Option to move non-installed apps to bottom (#264)

This commit is contained in:
Imran Remtulla
2023-05-05 23:08:34 -04:00
parent fb9e66332d
commit 30c89fe385
12 changed files with 54 additions and 6 deletions

View File

@@ -154,6 +154,15 @@ class SettingsProvider with ChangeNotifier {
notifyListeners();
}
bool get buryNonInstalled {
return prefs?.getBool('buryNonInstalled') ?? false;
}
set buryNonInstalled(bool show) {
prefs?.setBool('buryNonInstalled', show);
notifyListeners();
}
bool get groupByCategory {
return prefs?.getBool('groupByCategory') ?? false;
}