v1.0.0
icon_badge
A simple flutter icon widget with notification badge to show number of items.
32Likes 15330-day downloads150Pub points
AndroidiOSWebmacOSWindowsLinux
A simple flutter icon with notification badge with number of items.
{"sdk":"flutter"}{"sdk":"flutter"}English project snapshot. Visit GitHub for the latest content.
Icon with badge for notifications
How to use This widget can be used in appbar, bottom navigation and drawer.
Usage:
IconBadge(
icon: Icon(Icons.notifications_none),
itemCount: 0,
badgeColor: Colors.red,
itemColor: Colors.white,
hideZero: true,
onTap: () {
print('test');
},
),