Skip to content

Commit

Permalink
Merge branch 'master' into patch-2
Browse files Browse the repository at this point in the history
  • Loading branch information
ripsware authored Jun 24, 2020
2 parents 38739d1 + af5293e commit 43e6887
Show file tree
Hide file tree
Showing 4 changed files with 1,287 additions and 3,879 deletions.
10 changes: 6 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 43e6887

Please sign in to comment.