Open new chat screen page when new chat button is pressed.

This commit is contained in:
xsahil03x
2020-11-23 17:51:37 +05:30
parent 942250d517
commit f789975844
+9 -1
View File
@@ -69,7 +69,15 @@ class ChannelListPage extends StatelessWidget {
Widget build(BuildContext context) {
final user = StreamChat.of(context).user;
return Scaffold(
appBar: ChannelListHeader(),
appBar: ChannelListHeader(
onNewChatButtonTap: () {
Navigator.of(context).push(
MaterialPageRoute(
builder: (context) => NewChatScreen(),
),
);
},
),
drawer: _buildDrawer(context, user),
drawerEdgeDragWidth: 50,
body: ChannelsBloc(