mirror of
https://gitlab.com/comunic/comunicmobile
synced 2025-06-19 08:15:16 +00:00
Add force mobile mode preference
This commit is contained in:
@ -10,11 +10,16 @@ import 'package:shared_preferences/shared_preferences.dart';
|
||||
///
|
||||
/// @author Pierre HUBERT
|
||||
|
||||
enum PreferencesKeyList { LOGIN_TOKENS, ENABLE_DARK_THEME }
|
||||
enum PreferencesKeyList {
|
||||
LOGIN_TOKENS,
|
||||
ENABLE_DARK_THEME,
|
||||
FORCE_MOBILE_MODE,
|
||||
}
|
||||
|
||||
const _PreferenceKeysName = {
|
||||
PreferencesKeyList.LOGIN_TOKENS: "login_tokens",
|
||||
PreferencesKeyList.ENABLE_DARK_THEME: "dark_theme",
|
||||
PreferencesKeyList.FORCE_MOBILE_MODE: "force_mobile_mode",
|
||||
};
|
||||
|
||||
class PreferencesHelper {
|
||||
@ -75,6 +80,7 @@ class PreferencesHelper {
|
||||
/// Get all settings as an [ApplicationPreferences] object
|
||||
ApplicationPreferences get preferences => ApplicationPreferences(
|
||||
enableDarkMode: getBool(PreferencesKeyList.ENABLE_DARK_THEME),
|
||||
forceMobileMode: getBool(PreferencesKeyList.FORCE_MOBILE_MODE),
|
||||
);
|
||||
|
||||
/// Apply new preferences
|
||||
|
Reference in New Issue
Block a user