v1.0.0
icon_badge
एक सरल फ्लटर आइकन विजेट जिसमें सूचना बैज होता है जो आइटम की संख्या दिखाता है।
32लाइक 15330-दिन डाउनलोड150Pub अंक
AndroidiOSWebmacOSWindowsLinux
एक सरल फ्लटर आइकन जिसमें आइटम की संख्या के साथ नोटिफिकेशन बैज है।
{"sdk":"flutter"}{"sdk":"flutter"}यह अंग्रेज़ी मूल स्नैपशॉट है। नवीनतम सामग्री GitHub पर देखें।
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');
},
),