Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master' into update-to-v5.3.45-2
Browse files Browse the repository at this point in the history
# Conflicts:
#	README.md
#	lib/community_material_icon.dart
#	lib/fonts/materialdesignicons-webfont.ttf
#	pubspec.yaml
  • Loading branch information
ripsware committed Jun 24, 2020
2 parents 7949045 + 173aefe commit 6e59ecf
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5,354 deletions.
14 changes: 8 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ A [community material design icon](https://materialdesignicons.com) as set of Fl
In the `dependencies:` section of your `pubspec.yaml`, add the following line:

```yaml
community_material_icon: 5.3.45
community_material_icon: ^5.3.45
```
## Usage
Expand All @@ -17,10 +17,12 @@ 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"); }
);
return IconButton(
icon: Icon(CommunityMaterialIcons.alarm),
onPressed: () {
print('Pressed');
}
);
}
}
```
```
Loading

0 comments on commit 6e59ecf

Please sign in to comment.