Home > Enterprise >  The Font Awesome Flutter plugin won't load the icons
The Font Awesome Flutter plugin won't load the icons

Time:03-15

I am trying to use Font Awesome Flutter plugin for extra Icons like instagram and Twitter but the icons won't load what shall I do guys?

CodePudding user response:

That kinds of thing happen because after you add the plug in to PUBSPEC.yaml file and after pub get it you need to Stop and restart the whole project again in order to Font Awesome to work.

CodePudding user response:

follow these steps:

1 uninstall the app

2 re install the app

if the problem still happening

3 Run

flutter clean
flutter pub cache repair
flutter pub get

if the problem still happening

4 at the android studio, click on file => invalidate caches => invalidate caches and restart

5 install the app

if the problem still happening, share with us the code and print the result of Flutter doctor here

  • Related