fix: use modal sheet for stream info (back button nav)

This commit is contained in:
2025-05-15 10:56:33 +01:00
parent 5e28b40c5c
commit 2d855362e4

View File

@ -166,8 +166,10 @@ class _StreamPage extends State<StreamPage> {
),
GestureDetector(
onTap: () {
showBottomSheet(
showModalBottomSheet(
context: context,
constraints: BoxConstraints.expand(),
isScrollControlled: true,
builder: (context) => StreamInfoWidget(stream: stream),
);
},