FLUTTER ECOSYSTEM

Dicksenz/icon_badge

A simple flutter icon with notification badge with number of items.

icon_badge project cover
Stars
5
Forks
1
Last push (UTC)
Mar 14, 2021
Project status
Active
Dicksen GitHub avatar
GITHUB User

Dicksen ↗

Flutter | Android | iOS | React Native developer, Contribute to the Dart community and Flutter package creator. Postgraduate in Mobile Application Development.

Mauritius
LanguagesDartKotlinSwiftObjective-C

Packages published by this repository

Dependencies used

Dependency list 2 items
  • flutter{"sdk":"flutter"}
  • flutter_testDevelopment{"sdk":"flutter"}

Original README

English project snapshot. Visit GitHub for the latest content.

Expand / collapse project README

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');
        },
      ),