fix: scroll tags on stream info widget

This commit is contained in:
2025-05-23 16:30:10 +01:00
parent 46b809ff58
commit 0a75665bde

View File

@ -87,7 +87,10 @@ class StreamInfoWidget extends StatelessWidget {
),
if (stream.info.tags.isNotEmpty || stream.info.gameInfo != null)
Row(
SingleChildScrollView(
scrollDirection: Axis.horizontal,
primary: false,
child: Row(
spacing: 2,
children: [
if (stream.info.gameInfo != null)
@ -106,6 +109,7 @@ class StreamInfoWidget extends StatelessWidget {
),
],
),
),
StreamCardsWidget(stream: stream),
],
),