1
0
mirror of https://gitlab.com/comunic/comunicmobile synced 2025-09-19 05:48:54 +00:00

Load group information

This commit is contained in:
2021-04-24 10:14:56 +02:00
parent 4ed382a7c4
commit c4790635df
6 changed files with 31 additions and 4 deletions

View File

@@ -114,8 +114,11 @@ class _ConversationScreenState extends SafeState<ConversationsListScreen> {
/// Create a new conversation
void _createConversation() {
MainController.of(context)
.push(CreateConversationScreen(), canShowAsDialog: true);
MainController.of(context).push(
CreateConversationScreen(),
canShowAsDialog: true,
hideNavBar: true,
);
if (widget.onOpen != null) widget.onOpen();
}