flutter_webview_plugin 0.0.6
flutter_webview_plugin: ^0.0.6 copied to clipboard
Plugin that allow Flutter to communicate with a native Webview.
flutter_webview_plugin #
Plugin that allow Flutter to communicate with a native Webview.
For Android, it will launch a new Activity inside the App with the Webview inside. Does not allow to integrate a Webview inside a Flutter Widget
For IOS, it will launch a new UIViewController inside the App with the UIWebView inside. Does not allow to integrate a Webview inside a Flutter Widget
- ✅ Android
- ✅ IOS
Getting Started #
For help getting started with Flutter, view our online documentation.
Dart #
var flutterWebviewPlugin = new FlutterWebviewPlugin();
flutterWebviewPlugin.launch("https://flutter.io");
await flutterWebviewPlugin.onDestroy.first;
Android #
Add the Activity to you AndroidManifest.xml
<activity android:name="com.flutter_webview_plugin.WebviewActivity"
android:parentActivityName=".MainActivity"/>
IOS #
No extra configuration is needed