fix: scrolling stream cards on stream info modal

This commit is contained in:
2025-05-28 12:41:15 +01:00
parent 8516f2b3c1
commit 8bd9ff2a4c

View File

@ -111,7 +111,11 @@ class StreamInfoWidget extends StatelessWidget {
],
),
),
StreamCardsWidget(stream: stream),
Expanded(
child: SingleChildScrollView(
child: StreamCardsWidget(stream: stream),
),
),
],
),
);