style: Minor adjustments for modal bottom sheets
This commit is contained in:
parent
6e747c3153
commit
ae99606531
6 changed files with 18 additions and 18 deletions
|
|
@ -185,7 +185,7 @@ class ChatListViewBody extends StatelessWidget {
|
|||
if (controller.isSearchMode)
|
||||
SearchTitle(
|
||||
title: L10n.of(context)!.chats,
|
||||
icon: const Icon(Icons.chat_outlined),
|
||||
icon: const Icon(Icons.forum_outlined),
|
||||
),
|
||||
if (rooms.isEmpty && !controller.isSearchMode)
|
||||
Padding(
|
||||
|
|
|
|||
|
|
@ -45,13 +45,13 @@ class ChatListView extends StatelessWidget {
|
|||
badgePosition: badgePosition,
|
||||
filter:
|
||||
controller.getRoomFilterByActiveFilter(ActiveFilter.messages),
|
||||
child: const Icon(Icons.chat_outlined),
|
||||
child: const Icon(Icons.forum_outlined),
|
||||
),
|
||||
selectedIcon: UnreadRoomsBadge(
|
||||
badgePosition: badgePosition,
|
||||
filter:
|
||||
controller.getRoomFilterByActiveFilter(ActiveFilter.messages),
|
||||
child: const Icon(Icons.chat),
|
||||
child: const Icon(Icons.forum),
|
||||
),
|
||||
label: L10n.of(context)!.messages,
|
||||
),
|
||||
|
|
@ -61,13 +61,13 @@ class ChatListView extends StatelessWidget {
|
|||
badgePosition: badgePosition,
|
||||
filter:
|
||||
controller.getRoomFilterByActiveFilter(ActiveFilter.allChats),
|
||||
child: const Icon(Icons.chat_outlined),
|
||||
child: const Icon(Icons.forum_outlined),
|
||||
),
|
||||
selectedIcon: UnreadRoomsBadge(
|
||||
badgePosition: badgePosition,
|
||||
filter:
|
||||
controller.getRoomFilterByActiveFilter(ActiveFilter.allChats),
|
||||
child: const Icon(Icons.chat),
|
||||
child: const Icon(Icons.forum),
|
||||
),
|
||||
label: L10n.of(context)!.chats,
|
||||
),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue