flutter_vector_icons 0.0.2 flutter_vector_icons: ^0.0.2 copied to clipboard
Flutter vector icons
flutter_vector_icons #
Flutter version of react-native-vector-icons
Installation #
Add flutter_vector_icons
as a dependency in your pubspec.yaml file.
Usage #
import 'package:flutter_vector_icons/flutter_vector_icons.dart';
class MyWidget extends StatelessWidget {
Widget build(BuildContext context) {
return IconButton(
// Variable name is the same as font name
icon: Icon(MaterialCommunityIcons.star),
onPressed: () {
print('Star it');
}
);
}
}
Development #
- Copy glyphmaps json files to
glyphmaps
dir - run
dart tool/generate.dart
License #
MIT