Backup before removing hiddify references

This commit is contained in:
Hiddify User
2026-01-15 12:28:40 +03:00
parent f54603d129
commit 36d9e31236
231 changed files with 6648 additions and 1832 deletions

View File

@@ -9,7 +9,8 @@ class ThemePreferences extends _$ThemePreferences {
@override
AppThemeMode build() {
final persisted = ref.watch(sharedPreferencesProvider).requireValue.getString("theme_mode");
if (persisted == null) return AppThemeMode.system;
// UMBRIX: Темная тема по умолчанию
if (persisted == null) return AppThemeMode.dark;
return AppThemeMode.values.byName(persisted);
}