fix(mobile): persist album layout

This commit is contained in:
Yaros
2025-09-17 14:39:51 +02:00
parent f02bc73f2c
commit 555837046d
3 changed files with 8 additions and 1 deletions
@@ -50,7 +50,8 @@ enum AppSettingsEnum<T> {
enableBackup<bool>(StoreKey.enableBackup, null, false),
useCellularForUploadVideos<bool>(StoreKey.useWifiForUploadVideos, null, false),
useCellularForUploadPhotos<bool>(StoreKey.useWifiForUploadPhotos, null, false),
readonlyModeEnabled<bool>(StoreKey.readonlyModeEnabled, "readonlyModeEnabled", false);
readonlyModeEnabled<bool>(StoreKey.readonlyModeEnabled, "readonlyModeEnabled", false),
albumGridView<bool>(StoreKey.albumGridView, "albumGridView", false);
const AppSettingsEnum(this.storeKey, this.hiveKey, this.defaultValue);