Skip to content

Commit

Permalink
fix: update color of muted and unread chat item list
Browse files Browse the repository at this point in the history
  • Loading branch information
sherlockvn authored and hoangdat committed Sep 29, 2023
1 parent 89fd7ec commit ad7a4e9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/pages/chat_list/chat_list_item_subtitle.dart
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import 'package:fluffychat/utils/string_extension.dart';
import 'package:fluffychat/widgets/matrix.dart';
import 'package:flutter/material.dart';
import 'package:flutter_gen/gen_l10n/l10n.dart';
import 'package:linagora_design_flutter/colors/linagora_ref_colors.dart';
import 'package:matrix/matrix.dart';

class ChatListItemSubtitle extends StatelessWidget with ChatListItemMixin {
Expand Down Expand Up @@ -143,7 +144,7 @@ class ChatListItemSubtitle extends StatelessWidget with ChatListItemMixin {
? Theme.of(context).colorScheme.primary
: room.notificationCount > 0 || room.markedUnread
? Theme.of(context).colorScheme.primary
: Theme.of(context).colorScheme.primaryContainer,
: LinagoraRefColors.material().tertiary[30],
borderRadius: BorderRadius.circular(AppConfig.borderRadius),
),
child: Center(
Expand Down

0 comments on commit ad7a4e9

Please sign in to comment.