chore: Context icon improvements

This commit is contained in:
Christian Pauly 2020-12-20 16:44:55 +01:00
parent 377b06a462
commit 6381cea62d
2 changed files with 15 additions and 4 deletions

View File

@ -244,7 +244,7 @@ class ChatListItem extends StatelessWidget {
padding: EdgeInsets.only(
right: room.notificationCount > 0 ? 4.0 : 0.0),
child: Icon(
Icons.favorite_rounded,
Icons.push_pin_outlined,
size: 20,
color: Theme.of(context).primaryColor,
),

View File

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