Search code examples
iosfluttersafari

Flutter, webview_flutter IOS window pop up not working


Users must see some pop-up to sign up. (kinda Webview certification)

There is no problem with Android at all, but I don't know if IOS uses the Safari browser, but there is no popup. Anything else, it shows well


Solution

  • In info.plist please include these keys

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