1
0
mirror of https://gitlab.com/comunic/comunicmobile synced 2025-06-19 16:25:17 +00:00

Auto-hide conversations list when a conversation is selected

This commit is contained in:
2020-05-09 07:28:17 +02:00
parent 5ccd3d4884
commit 68b4c79960
4 changed files with 14 additions and 8 deletions

View File

@ -38,6 +38,9 @@ class _OpenConversationButtonState extends State<OpenConversationButton> {
width: 300,
height: 500,
child: Card(
child: ConversationsListScreen(useSmallFAB: true),
child: ConversationsListScreen(
useSmallFAB: true,
onOpen: () => _setShowConversationsList(false),
),
));
}