PS: Flutter 對于小白來說還是有蠻多坑的,不過既然選擇了遠方,便只顧遇坑填坑吧~ 真巧 用flutter_webview_plugin又遇到坑了。。。下面報錯,不知道你遇沒遇到,反正我是遇到了···

9999.jpg
解決方案:
- IOS info.plist添加:
<key>NSAppTransportSecurity</key>
<dict>
<key>NSAllowsArbitraryLoads</key>
<true/>
</dict>
- Android AndroidManifest.xml的application標簽里添加 android:usesCleartextTraffic="true"
<application
android:name="io.flutter.app.test"
android:label="test"
android:usesCleartextTraffic="true"
android:icon="@mipmap/ic_launcher">