美文网首页
[flutter]加载网络图片报错: Bad state: In

[flutter]加载网络图片报错: Bad state: In

作者: 文子飞_ | 来源:发表于2021-05-15 23:13 被阅读0次

flutter报错: Bad state: Insecure HTTP is not allowed by platform:

1、新建network_security_config.xml
image.png
<?xml version="1.0" encoding="utf-8"?>

<network_security_config>
    <base-config cleartextTrafficPermitted="true">
        <trust-anchors>
            <certificates src="system" />
        </trust-anchors>
    </base-config>
</network_security_config>
2、AndroidManifest.xml application标签内添加 android:networkSecurityConfig="@xml/network_security_config"
image.png
<application
        android:networkSecurityConfig="@xml/network_security_config"
        android:label="holler_flutter"
        android:icon="@mipmap/ic_launcher">
3.然Stop项目,重新Run运行即可。

相关文章

网友评论

      本文标题:[flutter]加载网络图片报错: Bad state: In

      本文链接:https://www.haomeiwen.com/subject/sdxljltx.html