feat(mobile): Auto switching server URLs (#14437)

This commit is contained in:
Alex 2024-12-05 09:11:48 -06:00 committed by GitHub
parent 3c38851d50
commit 055f1fc72f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
38 changed files with 1828 additions and 108 deletions

View file

@ -77,6 +77,7 @@ enum AppSettingsEnum<T> {
),
enableHapticFeedback<bool>(StoreKey.enableHapticFeedback, null, true),
syncAlbums<bool>(StoreKey.syncAlbums, null, false),
autoEndpointSwitching<bool>(StoreKey.autoEndpointSwitching, null, false),
;
const AppSettingsEnum(this.storeKey, this.hiveKey, this.defaultValue);