A List of all flutter Icons

Viewed 52267

I have recently started flutter. I am facing difficulty searching for appropriate icons whenever I want to use them. Is there any website or any source from where I can get the list of all the icons available for flutter? Any help is much appreciated. Thank you in advance :)

3 Answers

From the link below you have all Material Symbols and Icons from Google. No need to add a dependency as the standard Flutter lib includes them already:

https://fonts.google.com/icons?selected=Material+Icons

For example, the search icon is like this:

Icon(
  Icons.search,
),

There is the ionicons too, a complete lib with 1.3K icons. And the list of them all is here: https://ionic.io/ionicons


Also, if you'd like to change the launcher icons a good place is the link below. You can design Android, iOS, web, macOS... icons super easy.

https://icon.kitchen/

Related