ui cleanup

This commit is contained in:
Christien Rioux 2024-04-10 16:13:08 -04:00
parent 1f99279cd2
commit 23ec185324
26 changed files with 419 additions and 244 deletions

View file

@ -53,11 +53,11 @@ class SettingsPageState extends State<SettingsPage> {
child: ListView(
children: [
buildSettingsPageColorPreferences(
onChanged: () => setState(() {})),
context: context, onChanged: () => setState(() {})),
buildSettingsPageBrightnessPreferences(
onChanged: () => setState(() {})),
],
context: context, onChanged: () => setState(() {})),
].map((x) => x.paddingLTRB(0, 0, 0, 8)).toList(),
),
).paddingSymmetric(horizontal: 24, vertical: 8),
).paddingSymmetric(horizontal: 24, vertical: 16),
)));
}