干炸牛_bian

导航

 

网络图片加载不出来

flutter debug 下 Image.network()是正常的
但release 是不正常的,网络会加载不出图片
原因在于android/app/src/main/AndroidManifest.xml 需要添加

<uses-permission android:name="android.permission.INTERNET" />

这样网络图片就能加载出来了。

编译命令组合,build, 删旧app, 安装app

flutter build apk --debug && adb uninstall com.example.mytest && adb install -r build/app/outputs/apk/debug/app-debug.apk

posted on 2019-06-09 20:56  干炸牛_bian  阅读(135)  评论(0)    收藏  举报