flutter的坑

网络图片加载不出来

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

猜你喜欢

转载自www.cnblogs.com/jeroen/p/10994787.html