From a7a15f9481571ca5dd32b9589b2f984b27d01cb1 Mon Sep 17 00:00:00 2001 From: Krille Fear Date: Mon, 15 Nov 2021 07:27:19 +0100 Subject: [PATCH] fix: Do not display bottombar in selectmode --- lib/pages/chat_list/chat_list_view.dart | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/pages/chat_list/chat_list_view.dart b/lib/pages/chat_list/chat_list_view.dart index aa983059..83cae96a 100644 --- a/lib/pages/chat_list/chat_list_view.dart +++ b/lib/pages/chat_list/chat_list_view.dart @@ -198,7 +198,8 @@ class ChatListView extends StatelessWidget { child: const Icon(CupertinoIcons.chat_bubble), ) : null, - bottomNavigationBar: controller.spaces.isEmpty + bottomNavigationBar: controller.spaces.isEmpty || + controller.selectedRoomIds.isNotEmpty ? null : SpacesBottomBar(controller), ),