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
This commit is contained in:
Matt Vogel
2026-02-15 15:09:45 -05:00
parent 0bbcd854e4
commit bb8bddd1a7
+2 -1
View File
@@ -1801,7 +1801,7 @@ class _MediaDetailScreenState extends State<MediaDetailScreen> 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<MediaDetailScreen> with WatchStateAw
child: SizedBox(
width: 160,
child: Column(
mainAxisSize: MainAxisSize.min,
crossAxisAlignment: CrossAxisAlignment.start,
children: [
ClipRRect(