diff options
Diffstat (limited to 'app/src/main/res/xml/pref_general.xml')
-rw-r--r-- | app/src/main/res/xml/pref_general.xml | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/app/src/main/res/xml/pref_general.xml b/app/src/main/res/xml/pref_general.xml new file mode 100644 index 0000000..9016d00 --- /dev/null +++ b/app/src/main/res/xml/pref_general.xml @@ -0,0 +1,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:summaryOff="@string/pref_description_dark_theme_off" + android:summaryOn="@string/pref_description_dark_theme_on" + android:title="@string/pref_title_dark_theme" /> + +</PreferenceScreen> |