Flutter IOS internet access

Viewed 7286

I have searched but couldn't find any information about IOS ,

On android to have access to the internet i have to add this key :

uses-permission android:name="android.permission.INTERNET" 

to the AndroidManifest.xml.

On IOS , the any confuguration need to be add to Info.plist ?

Thank you Roque

1 Answers

Add the following in info.plist file.

<key>NSAppTransportSecurity</key>
<dict>
   <key>NSAllowsArbitraryLoads</key><true/>
</dict>

Doing this, resolved the issue for me

Related