fix: Do not display bottombar in selectmode

This commit is contained in:
Krille Fear 2021-11-15 07:27:19 +01:00
parent ca65de90ef
commit 8ac9372969

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