diff --git a/b0esche_cloud/lib/widgets/account_settings_dialog.dart b/b0esche_cloud/lib/widgets/account_settings_dialog.dart index 6d998ae..9d8820c 100644 --- a/b0esche_cloud/lib/widgets/account_settings_dialog.dart +++ b/b0esche_cloud/lib/widgets/account_settings_dialog.dart @@ -626,7 +626,7 @@ class _AccountSettingsDialogState extends State { alignment: Alignment.center, children: [ CircleAvatar( - radius: 50, + radius: 64, backgroundColor: AppTheme.secondaryText.withValues( alpha: 0.2, ), @@ -926,20 +926,18 @@ class _AccountSettingsDialogState extends State { onPressed: _showDeleteAccountConfirmation, style: ButtonStyle( splashFactory: NoSplash.splashFactory, - overlayColor: WidgetStateProperty.resolveWith( - (Set states) { - if (states.contains(WidgetState.pressed)) { - return Colors.transparent; - } - return null; - }, - ), + overlayColor: WidgetStateProperty.resolveWith(( + Set states, + ) { + if (states.contains(WidgetState.pressed)) { + return Colors.transparent; + } + return null; + }), backgroundColor: WidgetStateProperty.all( AppTheme.errorColor, ), - foregroundColor: WidgetStateProperty.all( - Colors.white, - ), + foregroundColor: WidgetStateProperty.all(Colors.white), elevation: WidgetStateProperty.all(0), shadowColor: WidgetStateProperty.all( Colors.transparent,