1
0
mirror of https://gitlab.com/comunic/comunicmobile synced 2025-06-19 08:15:16 +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();
}

View File

@ -90,6 +90,9 @@ class _InitializeWidgetState extends SafeState<InitializeWidget> {
print("Attempting WebSocket connection...");
if (config().additionalLoading != null)
await config().additionalLoading();
setState(() {});
} catch (e, stack) {
print("Could not connect to server! $e");