# Badge
If you need to add badge on the tab, use ConvexAppBar.badge
to get it done.
ConvexAppBar.badge({0: '99+', 1: Icons.assistant_photo, 2: Colors.redAccent},
items: [
TabItem(icon: Icons.home, title: 'Home'),
TabItem(icon: Icons.map, title: 'Discovery'),
TabItem(icon: Icons.add, title: 'Add'),
],
onTap: (int i) => print('click index=$i'),
);
1
2
3
4
5
6
7
8
2
3
4
5
6
7
8
The badge()
method accept an array of badges; The badges
is map with tab items, each value of entry can be either String
, IconData
, Color
or Widget
.
← Usage Single Button →