update unread indicator

This commit is contained in:
Salvatore Giordano
2020-07-08 10:45:50 +02:00
parent 6256195b4b
commit eb5517aca3
+5 -2
View File
@@ -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,
),
),
),
);