[NewChatScreen] Navigate to ChannelPage on successful messageSent

This commit is contained in:
xsahil03x
2020-11-19 12:11:57 +05:30
parent 6c4bcd2073
commit 7733cc7459
+13
View File
@@ -534,6 +534,19 @@ class _NewChatScreenState extends State<NewChatScreen> {
await channel.watch();
return message;
},
onMessageSent: (_) {
Navigator.pushReplacement(
context,
MaterialPageRoute(
builder: (context) {
return StreamChannel(
child: ChannelPage(),
channel: channel,
);
},
),
);
},
),
],
),