From 731dfc6b54e88232dda6b8ef5e6f18f21d6b935b Mon Sep 17 00:00:00 2001 From: Herwig Birke Date: Wed, 5 Nov 2025 21:08:21 +0100 Subject: [PATCH] Column Header left aligned --- lib/features/series/presentation/series_list_screen.dart | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/features/series/presentation/series_list_screen.dart b/lib/features/series/presentation/series_list_screen.dart index 695b3de..42a1100 100644 --- a/lib/features/series/presentation/series_list_screen.dart +++ b/lib/features/series/presentation/series_list_screen.dart @@ -1195,7 +1195,8 @@ class SeriesListScreen extends ConsumerWidget { const widgets.SizedBox(width: 16), widgets.SizedBox( width: seasonWidths[s] ?? 74, - child: Center( + child: Align( + alignment: Alignment.centerLeft, child: Text('Season $s', style: Theme.of(context) .textTheme