Make less obvious target highlighting optional

This commit is contained in:
Imran Remtulla
2023-09-09 07:29:35 -04:00
parent 4596e32258
commit 09421230f2
16 changed files with 42 additions and 1 deletions

View File

@@ -484,6 +484,21 @@ class _SettingsPageState extends State<SettingsPage> {
})
],
),
height16,
Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
Flexible(
child: Text(tr('highlightTouchTargets'))),
Switch(
value:
settingsProvider.highlightTouchTargets,
onChanged: (value) {
settingsProvider.highlightTouchTargets =
value;
})
],
),
height32,
Text(
tr('categories'),