Flutter has full support for all material icons. When you are in Flutter and you are looking for a list of the icons then that’s the link you needed.. Flutter also supports Font Awesome icons. but it doesn’t stop there. If you have a font of icons you would like to use. For example these from brandico then that’s possible to. .
Firstly download the TTF font file and place it in your assists folder.
Then reference it in your pubspec.yaml
file as follows
# The following section is specific to Flutter.
flutter:
uses-material-design: true
fonts:
- family: sampleIcons
fonts:
- asset: assets/brandico.ttf
Now the icon can be used in code.
Icon(IconData(0xf30f, fontFamily: 'sampleIcons'), size:88, color: Colors.brown),
There is a full Github sample here.