Icons Plus is a package for Flutter developers that provides a smaller collection of icons
Here is the list of all icon sets in Icons Plus.
- EvaIcons version: 1.1.3
- FontAwesome version: 6.5.1
NEW
TeenyIcons version: latest
EvaIcons offers two types of icons: Outline and Fill icons. If you prefer using outline icons, simply add _outline
as a suffix.
Icon(EvaIcons.clipboard),
Icon(EvaIcons.flash),
Icon(EvaIcons.clipboard_outline),
FontAwesome provides three types of icons: Regular, Solid, and Brand icons. To use Solid icons, simply append _solid
as a suffix. For example, for a solid, you can use Icon(FontAwesome.bug_solid)
, while Icon(FontAwesome.folder_open)
and Icon(FontAwesome.stripe_brand)
are used for Regular and Brand, respectively.
Icon(FontAwesome.stripe_brand),
Icon(FontAwesome.folder_open),
Icon(FontAwesome.bug_solid),
Here's an example showing how to use TeenyIcons.
Icon(TeenyIcons.google_play_store),
Icon(TeenyIcons.heart),
Icon(TeenyIcons.android),
Copyright © Rahul Chouhan. Licensed under the MIT LICENSE