fix: Do not display bottombar in selectmode
This commit is contained in:
parent
ca65de90ef
commit
8ac9372969
1 changed files with 2 additions and 1 deletions
|
|
@ -198,7 +198,8 @@ class ChatListView extends StatelessWidget {
|
||||||
child: const Icon(CupertinoIcons.chat_bubble),
|
child: const Icon(CupertinoIcons.chat_bubble),
|
||||||
)
|
)
|
||||||
: null,
|
: null,
|
||||||
bottomNavigationBar: controller.spaces.isEmpty
|
bottomNavigationBar: controller.spaces.isEmpty ||
|
||||||
|
controller.selectedRoomIds.isNotEmpty
|
||||||
? null
|
? null
|
||||||
: SpacesBottomBar(controller),
|
: SpacesBottomBar(controller),
|
||||||
),
|
),
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue