Redesign
This commit is contained in:
parent
f2b0cce282
commit
cc61d8e91a
13 changed files with 590 additions and 226 deletions
|
|
@ -37,7 +37,7 @@ class _NewGroupDialogState extends State<NewGroupDialog> {
|
|||
Navigator.push(
|
||||
context,
|
||||
MaterialPageRoute(builder: (context) {
|
||||
return Chat(roomID);
|
||||
return ChatView(roomID);
|
||||
}),
|
||||
),
|
||||
);
|
||||
|
|
|
|||
|
|
@ -42,7 +42,7 @@ class _NewPrivateChatDialogState extends State<NewPrivateChatDialog> {
|
|||
if (roomID != null) {
|
||||
await Navigator.push(
|
||||
context,
|
||||
MaterialPageRoute(builder: (context) => Chat(roomID)),
|
||||
MaterialPageRoute(builder: (context) => ChatView(roomID)),
|
||||
);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue