From b0d2e7a34b780899cae0dfe6d623777fbfe6d7e5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Elias=20M=C3=BCller?= Date: Thu, 9 Jul 2026 12:04:20 +0200 Subject: [PATCH] fixed inconsistent placement of appbar title on iOS --- lib/theming/dark_app_theme.dart | 1 + lib/theming/light_app_theme.dart | 1 + 2 files changed, 2 insertions(+) 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, ),