FLUTTER ECOSYSTEM

ripsware/community_material_icon

커뮤니티가 제작한 매터리얼 디자인 아이콘(https://materialdesignicons.com)을 플러터 아이콘 세트로 제공

community_material_icon 프로젝트 이미지
Stars
22
Forks
8
최근 푸시(UTC)
2021. 3. 4.
프로젝트 상태
활성
ripsware GitHub avatar
GITHUB User

ripsware ↗

언어DartSwiftObjective-C

이 저장소가 배포한 패키지

사용 중인 의존성

의존성 목록 1 개
  • flutter{"sdk":"flutter"}

원본 README

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

README 펼치기 / 접기

community_material_icon

A community material design icon as set of Flutter Icons

Usage

import 'package:community_material_icon/community_material_icon.dart';

class MyWidget extends StatelessWidget {
  Widget build(BuildContext context) {
    return IconButton(
      icon: Icon(CommunityMaterialIcons.alarm),
      onPressed: () {
        print('Pressed');
      }
    );
  }
}