diff --git a/b0esche_cloud/lib/pages/home_page.dart b/b0esche_cloud/lib/pages/home_page.dart index 93fea2a..d1baae8 100644 --- a/b0esche_cloud/lib/pages/home_page.dart +++ b/b0esche_cloud/lib/pages/home_page.dart @@ -378,7 +378,9 @@ class _HomePageState extends State with TickerProviderStateMixin { }) { final isSelected = _selectedTab == label; final highlightColor = const Color.fromARGB(255, 100, 200, 255); - final defaultColor = onTap != null ? AppTheme.primaryText : AppTheme.secondaryText; + final defaultColor = onTap != null + ? AppTheme.primaryText + : AppTheme.secondaryText; return GestureDetector( onTap: diff --git a/b0esche_cloud/lib/widgets/organization_settings_dialog.dart b/b0esche_cloud/lib/widgets/organization_settings_dialog.dart index 8806362..3af0710 100644 --- a/b0esche_cloud/lib/widgets/organization_settings_dialog.dart +++ b/b0esche_cloud/lib/widgets/organization_settings_dialog.dart @@ -550,7 +550,9 @@ class _OrganizationSettingsDialogState TextButton( style: ButtonStyle( splashFactory: NoSplash.splashFactory, - overlayColor: WidgetStateProperty.resolveWith((Set states) { + overlayColor: WidgetStateProperty.resolveWith(( + Set states, + ) { if (states.contains(WidgetState.pressed)) { return Colors.transparent; } @@ -563,7 +565,9 @@ class _OrganizationSettingsDialogState TextButton( style: ButtonStyle( splashFactory: NoSplash.splashFactory, - overlayColor: WidgetStateProperty.resolveWith((Set states) { + overlayColor: WidgetStateProperty.resolveWith(( + Set states, + ) { if (states.contains(WidgetState.pressed)) { return Colors.transparent; }