flutter_vector_icons 0.2.1 flutter_vector_icons: ^0.2.1 copied to clipboard
Customizable icons including AntDesign, Entypo, EvilIcons, Feather, FontAwesome, Foundation, Ionicons, MaterialCommunityIcons, MaterialIcons, Octicons, SimpleLineIcons and Zocial
example/flutter_vector_icons_example.dart
import 'package:flutter/material.dart';
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:
//
// AntDesign
// Entypo
// EvilIcons
// Feather
// FontAwesome
// Foundation
// Ionicons
// MaterialCommunityIcons
// MaterialIcons
// Octicons
// SimpleLineIcons
// Zocial
// FontAwesome5Brands
// FontAwesome5Regular
// FontAwesome5Solid
icon: Icon(MaterialCommunityIcons.star),
onPressed: () {
print('Star it');
},
);
}
}