I working on webview in flutter . I cant able to open http url in IOS. It working on https. Can anyone suggest how to overcome this.
I put in info.plist
<key>io.flutter.embedded_views_preview</key>
<string>YES</string>
<key>NSAllowsArbitraryLoads</key>
<true/>
Regards, Sathish
Add this to your Info.plist
<key>NSAppTransportSecurity</key>
<dict>
<key>NSAllowsArbitraryLoads</key>
<true/>
<key>NSAllowsArbitraryLoadsInWebContent</key>
<true/>
</dict>
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With