diff options
-rw-r--r-- | app/src/main/java/com/no_name/no_name/Util/ThemeUtil.kt | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/app/src/main/java/com/no_name/no_name/Util/ThemeUtil.kt b/app/src/main/java/com/no_name/no_name/Util/ThemeUtil.kt deleted file mode 100644 index 5125f12..0000000 --- a/app/src/main/java/com/no_name/no_name/Util/ThemeUtil.kt +++ /dev/null @@ -1,34 +0,0 @@ -package com.no_name.no_name.util - -import android.content.Context -import com.madapps.prefrences.EasyPrefrences -import com.no_name.no_name.util.ThemeUtil.isDarkTheme - -/** - * Get the name of the theme depending on [actionBar] and [isDarkTheme] - */ -object ThemeUtil { - /** - * Checks if the theme saved in sharedPreferences is dark/light - */ - private fun isDarkTheme(context: Context): Boolean { - val sharedPrefs = EasyPrefrences(context) - val darkTheme: Boolean? = sharedPrefs.getBoolean("dark_theme_switch") - darkTheme?.let { - return darkTheme - } ?: run { - return false - } - } - - /** - * Get the name of the theme depending on [actionBar] and [isDarkTheme] - */ - fun getThemeName(context: Context): String { - return if (isDarkTheme(context)) { - "dark" - } else { - "light" - } - } -}
\ No newline at end of file |