This commit is contained in:
Imran Remtulla
2022-11-02 20:23:40 -04:00
parent 9b99e2b302
commit 03da23f77a
3 changed files with 38 additions and 2 deletions

View File

@@ -155,6 +155,20 @@ class _SettingsPageState extends State<SettingsPage> {
})
],
),
const SizedBox(
height: 16,
),
Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
const Text('Pin Updates to Top of Apps View'),
Switch(
value: settingsProvider.pinUpdates,
onChanged: (value) {
settingsProvider.pinUpdates = value;
})
],
),
const Divider(
height: 16,
),