Home > Software design >  flutter unable to load asset with correct settings
flutter unable to load asset with correct settings

Time:01-22

this is my asset folder structure:

enter image description here

pubspec.yaml contents:

enter image description here

where that I use icon:

enter image description here

everything is right but I don't know why still it doesn't work:

enter image description here

CodePudding user response:

It happens multiple time while developing with flutter. Steps which I usually do to solve this kind of issue:

->Restart the IDE and run pub get again (it works sometime).

->Run flutter clean, and re-run the App(It clears build cache of the App). It worked in most of the cases.

  •  Tags:  
  • Related