Added option to not show App webpage + wording tweak

This commit is contained in:
Imran Remtulla
2022-09-03 17:06:46 -04:00
parent c30c692d87
commit f63da4b538
3 changed files with 82 additions and 8 deletions

View File

@@ -69,4 +69,13 @@ class SettingsProvider with ChangeNotifier {
}
}
}
bool get showAppWebpage {
return prefs?.getBool('showAppWebpage') ?? true;
}
set showAppWebpage(bool show) {
prefs?.setBool('showAppWebpage', show);
notifyListeners();
}
}