Reputation: 422
I'm going to add an antenna icon in my project. Unfortunately, I didn't find any good icon. I've been searching for a hour, but there's nothing good enough. The flutter has just an icon like this
Icons.settings_input_antenna
that is not good and I don't like it.
Upvotes: 1
Views: 1258
Reputation: 7670
you can add GroovinMaterialIcons to your project and get more Material Icons.
check https://pub.dev/packages/groovin_material_icons.
Upvotes: 0
Reputation: 3663
You can use use the font_awesome package to import additional icons
Add the following import to your yaml file
dependencies:
...
font_awesome: any
...
Then in your code you can use
FontAwesome.icon
For Material Icons you can just use the codepoints Like below. Note the newer icons does not have an official list for the codepoints.
const Icon(IconData(0xe1c8, fontFamily: 'MaterialIcons')), // note the `0x` before the actual codepoint.
If you cant find the codepoint of the icon you need then you can also just download it from MaterialIcons and add it as an image (not sure if this is optimal)
I have also added a possible list ref, but don't think its what you want.
References
Upvotes: 1