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 :)

- 1,007
- 2
- 8
- 18
-
https://fonts.google.com/icons?selected=Material+Icons – genericUser Feb 08 '23 at 13:46
5 Answers
Default Material Icons: https://api.flutter.dev/flutter/material/Icons-class.html
Flutter custom icons generator: https://www.fluttericon.com/
FontAwesomeIcons: https://pub.dev/packages/font_awesome_flutter
Icon Forest: https://pub.dev/packages/icon_forest
Icon Sax: https://pub.dev/packages/iconsax
Ion Icons: https://pub.dev/packages/ionicons
Unicons: https://pub.dev/packages/unicons
Line Icons: https://pub.dev/packages/line_icons

- 7,957
- 6
- 37
- 55
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.

- 8,927
- 5
- 24
- 44
-
1I find the link here much more useful that the "Default Material Icons" provided by the answer marked as solution as it can be filtered in real time in groups of icons. – nck Oct 23 '22 at 13:54
Search 160k+ icons from all pub.dev packages https://pub.dev/packages/icon_forest
It contains most of the popular open-source icon libraries.

- 99
- 1
- 5
-
this lib is under maintained, some dependices too old, not suggest – Nicholas Jela Jul 17 '23 at 15:10
In addition to the above answers... you can find a pdf cheat sheet here if you want to print perhaps.. Material icons pdf cheatsheet

- 472
- 6
- 17
Flutter depending on the theme, by default comes with icons,...
Search Default Material:https://materialdesignicons.com/

- 103
- 1
- 9