iOS apps with Flutter

Add Info.plist URL scheme mapping.

Info.plist example

<key>CFBundleURLTypes</key>
<array>
    <dict>
        <key>CFBundleURLName</key>
        <string>appfigurate.Example</string>
        <key>CFBundleURLSchemes</key>
        <array>
            <string>example</string>
        </array>
    </dict>
</array>

You do not need to call APLApplicationOpenURL or APLApplicationDidFinishLaunchingWithOptions as they're implicity called by the iOS Flutter Plugin.

Now jump to Mobile Flutter apps.

Last updated