fix: backup indicator in beta app bar (#20354)

fix: beta - app bar backup indicator

Co-authored-by: shenlong-tanwen <139912620+shalong-tanwen@users.noreply.github.com>
This commit is contained in:
shenlong 2025-07-28 19:20:50 +05:30 committed by GitHub
parent c7fcb23a23
commit 1e1c2ea627
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 39 additions and 30 deletions

View file

@ -8,6 +8,7 @@ enum Setting<T> {
loadOriginalVideo<bool>(StoreKey.loadOriginalVideo, false),
preferRemoteImage<bool>(StoreKey.preferRemoteImage, false),
advancedTroubleshooting<bool>(StoreKey.advancedTroubleshooting, false),
enableBackup<bool>(StoreKey.enableBackup, false),
;
const Setting(this.storeKey, this.defaultValue);