FLUTTER ECOSYSTEM

Dicksenz/icon_badge

항목 수를 표시하는 알림 배지가 있는 간단한 플러터 아이콘입니다.

아이콘 배지 프로젝트 이미지
Stars
5
Forks
1
최근 푸시(UTC)
2021. 3. 14.
프로젝트 상태
활성
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
언어DartKotlinSwiftObjective-C

이 저장소가 배포한 패키지

사용 중인 의존성

의존성 목록 2 개
  • flutter{"sdk":"flutter"}
  • flutter_test개발 의존성{"sdk":"flutter"}

원본 README

아래는 영문 원문 스냅샷입니다. 최신 내용은 GitHub에서 확인하세요.

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