feat(mobile): add trobleshooting toggle (#2235)

* Added troubleshooting settings

* Added asset detail info in debug mode

* lint
This commit is contained in:
Alex 2023-04-11 12:21:00 -05:00 committed by GitHub
parent dd8d113334
commit 1564807aa0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 181 additions and 1 deletions

View file

@ -43,6 +43,11 @@ enum AppSettingsEnum<T> {
"selectedAlbumSortOrder",
0,
),
advancedTroubleshooting<bool>(
StoreKey.advancedTroubleshooting,
"advancedTroubleshooting",
false,
),
;
const AppSettingsEnum(this.storeKey, this.hiveKey, this.defaultValue);