From 8bd9ff2a4c50461d419620f1f3422623ec2f74cc Mon Sep 17 00:00:00 2001 From: Kieran Date: Wed, 28 May 2025 12:41:15 +0100 Subject: [PATCH] fix: scrolling stream cards on stream info modal --- lib/widgets/stream_info.dart | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/lib/widgets/stream_info.dart b/lib/widgets/stream_info.dart index 057cf18..c72b8f3 100644 --- a/lib/widgets/stream_info.dart +++ b/lib/widgets/stream_info.dart @@ -111,7 +111,11 @@ class StreamInfoWidget extends StatelessWidget { ], ), ), - StreamCardsWidget(stream: stream), + Expanded( + child: SingleChildScrollView( + child: StreamCardsWidget(stream: stream), + ), + ), ], ), );