From bb8bddd1a78df8be33300bde186d6070daaa793f Mon Sep 17 00:00:00 2001 From: Matt Vogel Date: Sun, 15 Feb 2026 12:01:42 -0500 Subject: [PATCH] fix: reduce white space in trailers & extras row Fixes excessive white space at the bottom of media containers in the trailers & extras horizontal scroll: - Add mainAxisSize.min to Column to prevent expansion - Reduce container height from 200 to 160px to match content size --- lib/screens/media_detail_screen.dart | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/screens/media_detail_screen.dart b/lib/screens/media_detail_screen.dart index 9464ffb9..d4867e52 100644 --- a/lib/screens/media_detail_screen.dart +++ b/lib/screens/media_detail_screen.dart @@ -1801,7 +1801,7 @@ class _MediaDetailScreenState extends State with WatchStateAw ), const SizedBox(height: 12), SizedBox( - height: 200, + height: 160, child: HorizontalScrollWithArrows( builder: (scrollController) => ListView.separated( controller: scrollController, @@ -1928,6 +1928,7 @@ class _MediaDetailScreenState extends State with WatchStateAw child: SizedBox( width: 160, child: Column( + mainAxisSize: MainAxisSize.min, crossAxisAlignment: CrossAxisAlignment.start, children: [ ClipRRect(