We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9c05312 commit 32c7f68Copy full SHA for 32c7f68
README.md
@@ -16,6 +16,23 @@ you won't be able to use snackbars, dialogs ...
16
17
For help getting started with Flutter, view our online [documentation](http://flutter.io/).
18
19
+#### iOS
20
+
21
+In order for plugin to work correctly, you need to add new key to `ios/Runner/Info.plist`
22
23
+```xml
24
+<key>NSAppTransportSecurity</key>
25
+<dict>
26
+ <key>NSAllowsArbitraryLoads</key>
27
+ <true/>
28
+ <key>NSAllowsArbitraryLoadsInWebContent</key>
29
30
+</dict>
31
+```
32
33
+`NSAllowsArbitraryLoadsInWebContent` is for iOS 10+ and `NSAllowsArbitraryLoads` for iOS 9.
34
35
36
### How it works
37
38
#### Launch WebView Fullscreen with Flutter navigation
0 commit comments