v1.0.0
icon_badge
항목 수를 표시하는 알림 배지가 있는 간단한 Flutter 아이콘 위젯입니다.
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');
},
),