mirror of
https://github.com/nostrlabs-io/zap-stream-flutter.git
synced 2025-06-17 20:28:52 +00:00
fix: use modal sheet for stream info (back button nav)
This commit is contained in:
@ -166,8 +166,10 @@ class _StreamPage extends State<StreamPage> {
|
|||||||
),
|
),
|
||||||
GestureDetector(
|
GestureDetector(
|
||||||
onTap: () {
|
onTap: () {
|
||||||
showBottomSheet(
|
showModalBottomSheet(
|
||||||
context: context,
|
context: context,
|
||||||
|
constraints: BoxConstraints.expand(),
|
||||||
|
isScrollControlled: true,
|
||||||
builder: (context) => StreamInfoWidget(stream: stream),
|
builder: (context) => StreamInfoWidget(stream: stream),
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
|
Reference in New Issue
Block a user