From eb5517aca3607ee972dea48c5705d65dadd5129a Mon Sep 17 00:00:00 2001 From: Salvatore Giordano Date: Wed, 8 Jul 2020 10:45:50 +0200 Subject: [PATCH] update unread indicator --- lib/src/unread_indicator.dart | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/lib/src/unread_indicator.dart b/lib/src/unread_indicator.dart index 73f57d05..96bf0a00 100644 --- a/lib/src/unread_indicator.dart +++ b/lib/src/unread_indicator.dart @@ -17,10 +17,13 @@ class UnreadIndicator extends StatelessWidget { child: CircleAvatar( backgroundColor: StreamChatTheme.of(context).channelPreviewTheme.unreadCounterColor, - radius: 6, + radius: 8, child: Text( '${channel.state.unreadCount}', - style: TextStyle(fontSize: 8), + style: TextStyle( + fontSize: 11, + color: Colors.white, + ), ), ), );