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
In my case, while i was using relative path like that Image.asset('./../images/welcome.png'), it doesn't work.
Image.asset('./../images/welcome.png')
But if i use absolute path like that Image.asset('images/welcome.png'), it works !
Image.asset('images/welcome.png')