Export settings (#1157)

This commit is contained in:
Imran Remtulla
2023-12-16 02:55:05 -05:00
parent dc92ccda0a
commit 80e4986b23
21 changed files with 74 additions and 6 deletions

View File

@@ -416,4 +416,13 @@ class SettingsProvider with ChangeNotifier {
prefs?.setBool('onlyCheckInstalledOrTrackOnlyApps', val);
notifyListeners();
}
bool get exportSettings {
return prefs?.getBool('exportSettings') ?? false;
}
set exportSettings(bool val) {
prefs?.setBool('exportSettings', val);
notifyListeners();
}
}