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

View File

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