Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions packages/stream_chat_flutter/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
🐞 Fixed

- Fixed `.replaceMentions` not escaping special characters in the username.
- Fixed unread indicator button using hardcoded white color instead of theme color
`colorTheme.barsBg`. [[#2366]](https://github.com/GetStream/stream-chat-flutter/issues/2366)

## 9.16.0

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -92,15 +92,15 @@ class UnreadIndicatorButton extends StatelessWidget {
context.translations.unreadCountIndicatorLabel(
unreadCount: unreadCount,
),
style: textTheme.body.copyWith(color: Colors.white),
style: textTheme.body.copyWith(color: colorTheme.barsBg),
),
const SizedBox(width: 12),
IconButton(
iconSize: 24,
icon: const SvgIcon(StreamSvgIcons.close),
padding: const EdgeInsets.all(4),
style: IconButton.styleFrom(
foregroundColor: Colors.white,
foregroundColor: colorTheme.barsBg,
minimumSize: const Size.square(24),
tapTargetSize: MaterialTapTargetSize.shrinkWrap,
),
Expand Down