diff --git a/lib/theming/dark_app_theme.dart b/lib/theming/dark_app_theme.dart index 97e6a81..06c3b85 100644 --- a/lib/theming/dark_app_theme.dart +++ b/lib/theming/dark_app_theme.dart @@ -8,6 +8,7 @@ class DarkAppTheme { seedColor: marianumRed, brightness: Brightness.dark, ), + appBarTheme: const AppBarTheme(centerTitle: false), primaryColor: marianumRed, ); } diff --git a/lib/theming/light_app_theme.dart b/lib/theming/light_app_theme.dart index 5589bae..fb1360e 100644 --- a/lib/theming/light_app_theme.dart +++ b/lib/theming/light_app_theme.dart @@ -6,6 +6,7 @@ class LightAppTheme { static final theme = ThemeData( brightness: Brightness.light, colorScheme: ColorScheme.fromSeed(seedColor: marianumRed), + appBarTheme: const AppBarTheme(centerTitle: false), floatingActionButtonTheme: const FloatingActionButtonThemeData( foregroundColor: Colors.white, ),