chore: Context icon improvements
This commit is contained in:
parent
e53cc2ec02
commit
bd6f28766f
2 changed files with 15 additions and 4 deletions
|
|
@ -208,6 +208,12 @@ class _ChatListState extends State<ChatList> {
|
|||
if (selectMode == SelectMode.share) {
|
||||
_selectedRoomIds.clear();
|
||||
}
|
||||
Room selectedRoom;
|
||||
if (_selectedRoomIds.length == 1) {
|
||||
selectedRoom = Matrix.of(context)
|
||||
.client
|
||||
.getRoomById(_selectedRoomIds.single);
|
||||
}
|
||||
return Scaffold(
|
||||
drawer:
|
||||
selectMode != SelectMode.normal ? null : DefaultDrawer(),
|
||||
|
|
@ -234,18 +240,23 @@ class _ChatListState extends State<ChatList> {
|
|||
if (_selectedRoomIds.length == 1)
|
||||
IconButton(
|
||||
tooltip: L10n.of(context).toggleUnread,
|
||||
icon: Icon(Icons.mark_chat_unread_outlined),
|
||||
icon: Icon(selectedRoom.isUnread
|
||||
? Icons.mark_chat_read_outlined
|
||||
: Icons.mark_chat_unread_outlined),
|
||||
onPressed: () => _toggleUnread(context),
|
||||
),
|
||||
if (_selectedRoomIds.length == 1)
|
||||
IconButton(
|
||||
tooltip: L10n.of(context).toggleFavorite,
|
||||
icon: Icon(Icons.favorite_border_outlined),
|
||||
icon: Icon(Icons.push_pin_outlined),
|
||||
onPressed: () => _toggleFavouriteRoom(context),
|
||||
),
|
||||
if (_selectedRoomIds.length == 1)
|
||||
IconButton(
|
||||
icon: Icon(Icons.notifications_none_outlined),
|
||||
icon: Icon(selectedRoom.pushRuleState ==
|
||||
PushRuleState.notify
|
||||
? Icons.notifications_off_outlined
|
||||
: Icons.notifications_outlined),
|
||||
tooltip: L10n.of(context).toggleMuted,
|
||||
onPressed: () => _toggleMuted(context),
|
||||
),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue