fluttercommunity / flutter_webview_plugin

Community WebView Plugin - Allows Flutter to communicate with a native WebView.
https://pub.dev/packages/flutter_webview_plugin
Other
1.48k stars 929 forks source link

How to launch/load local html for iOS? #897

Open mekery opened 3 years ago

mekery commented 3 years ago

I have a html file in assets/index.html, I can launch it for Android use the url like:

String localUrl = 'file:///android_asset/flutter_assets/assets/index.html';

What url should I use for iOS? Following is the launch code:

_flutterWebviewPlugin.launch(
    localUrl,
    ignoreSSLErrors: true,
    withLocalUrl: true,
    localUrlScope: 'assets/',
    allowFileURLs: true,
    hidden: true
);