CometChatBadge
is the custom component which is used to display the unread message count. It can be used in widgets like CometChatListItem
shown for Conversation objects, CometChatUI
, etc.

How to integrate CometChatBadge?
SinceCometChatBadge
is a Widget, it can be added directly in the build method. CometChatBadge
includes various attributes and methods to customize its UI.
Usage
- Dart
Properties
Parameters | Type | Description |
---|---|---|
int count | int | used to set value of count. |
BadgeStyle
Parameters | Type | Description |
---|---|---|
textStyle | TextStyle | used to set style for the count |
borderRadius | double | used to modify the border radius |
background | Color | used to set background color |
border | BoxBorder | used to set border |
gradient | Gradient | used to set a gradient background |
height | double | used to set height |
width | double | used to set width |
Usage
- Dart