mirror of
https://github.com/skyline-emu/skyline.git
synced 2025-01-09 11:15:29 +03:00
8d1545aabf
This commit adds support for Android Night Mode and adds in a dark theme for the UI.
20 lines
698 B
XML
20 lines
698 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:clickable="false"
|
|
android:orientation="vertical"
|
|
android:padding="12dp">
|
|
|
|
<TextView
|
|
android:id="@+id/text_title"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="5dp"
|
|
android:layout_marginTop="2dp"
|
|
android:layout_marginEnd="5dp"
|
|
android:textColor="?colorSecondary"
|
|
android:textSize="13sp" />
|
|
|
|
</RelativeLayout>
|