chore: Design adjustments

This commit is contained in:
krille-chan 2024-11-03 11:11:13 +01:00
commit 133e7ab955
No known key found for this signature in database
4 changed files with 14 additions and 11 deletions

View file

@ -282,15 +282,19 @@ class SettingsStyleView extends StatelessWidget {
],
),
),
Divider(
color: theme.dividerColor,
),
ListTile(
title: TextButton(
title: TextButton.icon(
style: TextButton.styleFrom(
backgroundColor: theme.colorScheme.secondaryContainer,
foregroundColor:
theme.colorScheme.onSecondaryContainer,
),
onPressed: controller.setWallpaper,
child: Text(L10n.of(context).setWallpaper),
icon: const Icon(Icons.edit_outlined),
label: Text(L10n.of(context).setWallpaper),
),
trailing: accountConfig.wallpaperUrl == null
? null