add background color option to AnimatedDialogButton
Some checks failed
Pull Request Pipeline / lint (pull_request) Failing after 2m47s
Pull Request Pipeline / test (pull_request) Successful in 2m38s

This commit is contained in:
2026-01-13 21:53:45 +01:00
parent 82ad2b74f8
commit 4019ed083f
2 changed files with 15 additions and 5 deletions

View File

@@ -111,7 +111,8 @@ class _SettingsViewState extends State<SettingsView> {
),
AnimatedDialogButton(
onPressed: () => Navigator.of(context).pop(true),
child: Text(loc.delete, style: TextStyle(color: CustomTheme.secondaryColor)),
child: Text(loc.delete, style: TextStyle(color: CustomTheme.textColor)),
backgroundColor: CustomTheme.secondaryColor,
),
],
),