Hi all, welcome to mistiquedesigns. When I was a beginner in flutter I was working with one of the projects that were working perfectly fine in the android emulator, but when I exported the apk file for testing on a real device all the images were called using Network. image(‘URL’) was not showing up.
This is the most common issue all beginners must have faced and you won\’t believe the solution is quite simple.
Solution
Open your flutter project folder and navigate to
android/app/src/main/AndroidManifest.xml
and after </application> add this android permission
<uses-permission android:name=\"android.permission.INTERNET\" />