File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
packages/stream_chat_flutter
lib/src/message_list_view Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 8
8
🐞 Fixed
9
9
10
10
- Fixed ` .replaceMentions ` not escaping special characters in the username.
11
+ - Fixed unread indicator button using hardcoded white color instead of theme color
12
+ ` colorTheme.barsBg ` . [[ #2366 ]] ( https://github.com/GetStream/stream-chat-flutter/issues/2366 )
11
13
- Fixed ` GradientAvatars ` for users with same-length IDs would have identical
12
14
colors. [[ #2369 ]] ( https://github.com/GetStream/stream-chat-flutter/issues/2369 )
13
15
Original file line number Diff line number Diff line change @@ -92,15 +92,15 @@ class UnreadIndicatorButton extends StatelessWidget {
92
92
context.translations.unreadCountIndicatorLabel (
93
93
unreadCount: unreadCount,
94
94
),
95
- style: textTheme.body.copyWith (color: Colors .white ),
95
+ style: textTheme.body.copyWith (color: colorTheme.barsBg ),
96
96
),
97
97
const SizedBox (width: 12 ),
98
98
IconButton (
99
99
iconSize: 24 ,
100
100
icon: const SvgIcon (StreamSvgIcons .close),
101
101
padding: const EdgeInsets .all (4 ),
102
102
style: IconButton .styleFrom (
103
- foregroundColor: Colors .white ,
103
+ foregroundColor: colorTheme.barsBg ,
104
104
minimumSize: const Size .square (24 ),
105
105
tapTargetSize: MaterialTapTargetSize .shrinkWrap,
106
106
),
You can’t perform that action at this time.
0 commit comments