Skip to content

Latest commit

 

History

History
26 lines (19 loc) · 572 Bytes

README.md

File metadata and controls

26 lines (19 loc) · 572 Bytes

community_material_icon

A community material design icon as set of Flutter Icons

Installation

In the dependencies: section of your pubspec.yaml, add the following line:

  community_material_icon: 3.5.95

Usage

import 'package:community_material_icon/community_material_icon.dart';

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