fix bottom sheet and channel name

This commit is contained in:
Salvatore Giordano
2020-11-27 09:23:12 +01:00
parent 29868aa7a9
commit 9ca8606790
3 changed files with 46 additions and 26 deletions
+4 -1
View File
@@ -511,7 +511,10 @@ class _ChannelListViewState extends State<ChannelListView>
),
context: context,
builder: (context) {
return ChannelBottomSheet(channel: channel);
return StreamChannel(
child: ChannelBottomSheet(),
channel: channel,
);
},
);
},