v1.0.0
icon_badge
一個簡單的 Flutter 圖標小部件,帶有通知徽章以顯示項目數量。
32喜歡 153近 30 天下載150Pub 分數
AndroidiOSWebmacOSWindowsLinux
一個簡單的 Flutter 圖標,帶有顯示項目數量的通知徽章。
{"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');
},
),