"Check updates on start" toggle

This commit is contained in:
Imran Remtulla
2023-05-06 14:25:17 -04:00
parent d5f7eced8b
commit cc268aeeda
12 changed files with 70 additions and 18 deletions

View File

@@ -228,6 +228,18 @@ class _SettingsPageState extends State<SettingsPage> {
color: Theme.of(context).colorScheme.primary),
),
intervalDropdown,
height16,
Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
Flexible(child: Text(tr('checkOnStart'))),
Switch(
value: settingsProvider.checkOnStart,
onChanged: (value) {
settingsProvider.checkOnStart = value;
})
],
),
height32,
Text(
tr('sourceSpecific'),