2
0
mirror of https://gitlab.com/famedly/fluffychat.git synced 2025-03-11 19:20:40 +01:00

fix: Do not display bottombar in selectmode

This commit is contained in:
Krille Fear 2021-11-15 07:27:19 +01:00
parent 226c97526e
commit a7a15f9481

@ -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),
),