v1.1.5+35

- overlay buttons
- encrypted storage
- downloadbutton (wip)
This commit is contained in:
2025-06-07 20:32:24 +02:00
parent 43c42ac0d5
commit 1cd10b3809
4 changed files with 35 additions and 6 deletions

View File

@ -34,7 +34,11 @@ class ThemeNotifier extends StateNotifier<ThemeData> {
final themeNotifierProvider = StateNotifierProvider<ThemeNotifier, ThemeData>((
ref,
) {
return ThemeNotifier(secureStorage: FlutterSecureStorage());
return ThemeNotifier(
secureStorage: FlutterSecureStorage(
aOptions: AndroidOptions(encryptedSharedPreferences: true),
),
);
});
class CustomTheme {