Dark theme is now the default one

This commit is contained in:
Abdelilah El Aissaoui 2021-12-08 19:12:08 +01:00
parent 2a5b3097ad
commit 7eb26f0f4b

View File

@ -34,7 +34,7 @@ class AppPreferences @Inject constructor() {
var theme: Themes
get() {
val lastTheme = preferences.get(PREF_THEME, Themes.LIGHT.toString())
val lastTheme = preferences.get(PREF_THEME, Themes.DARK.toString())
return Themes.valueOf(lastTheme)
}
set(value) {