Search code examples
flutterdartvisual-studio-codeiconsfont-awesome

Where are the icons from?


I use a Flutter project from GitHub to learn Dart/Flutter. But now I have a problem, because I don't know where the icons come from!

This is the code snippet:

Icon(Icons.search,color: Colors.black,),

I want to know where the icon come from and how I can put there a FontAwesome Icon instead: https://fontawesome.com/icons/copy?style=regular


Solution

  • Flutter Icons is bundled into the framework. You can check all the available icons here.

    To use Font Awesome icons, check out available font awesome icon package for flutter here.