flutter can not find my images assets, what can I be doing wrong?
I got the error on debugger:
Launching lib/main.dart on XT1097 in debug mode... Built build
I faced this error when i was accidentally passing number parameter as URL to get image from server.
leading: CircleAvatar(
backgroundImage: NetworkImage(imageUrl),
),
//imageUrl should be correct image url not other type.
Im my case I was in hot reload mode and nothing was happening. I had to click hot restart for the image to show up.
In my case I have two space between _ and assets that's why this exception coming
- assets/images/logo.png
- assets/images/bg.jpg
Now I fixed by
assets:
- assets/images/logo.png
- assets/images/bg.jpg