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), + ), + ), ], ), );