blob: 5326f4d91ac69a10086fb5f5bc65495bfc64cc81 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
<SwitchPreference
android:id="@+id/dark_theme_switch_button"
android:defaultValue="true"
android:key="dark_theme_switch"
android:summaryOn="@string/pref_description_dark_theme_on"
android:summaryOff="@string/pref_description_dark_theme_off"
android:title="@string/pref_title_dark_theme" />
</PreferenceScreen>
|