Sen descrición

Hadrien Lejard f94a84dd3d bump pubspec version %!s(int64=8) %!d(string=hai) anos
android 122ba7c940 update plugin registration %!s(int64=8) %!d(string=hai) anos
example c27fa34fc7 bump version %!s(int64=8) %!d(string=hai) anos
ios 4e3488bc16 iOS web view plugin %!s(int64=8) %!d(string=hai) anos
lib 4e3488bc16 iOS web view plugin %!s(int64=8) %!d(string=hai) anos
.analysis_options f2b4436fa9 doc %!s(int64=8) %!d(string=hai) anos
.gitignore 4e3488bc16 iOS web view plugin %!s(int64=8) %!d(string=hai) anos
CHANGELOG.md c27fa34fc7 bump version %!s(int64=8) %!d(string=hai) anos
LICENSE feb642eaf0 first commit %!s(int64=8) %!d(string=hai) anos
README.md 4e3488bc16 iOS web view plugin %!s(int64=8) %!d(string=hai) anos
flutter_webview_plugin.iml feb642eaf0 first commit %!s(int64=8) %!d(string=hai) anos
pubspec.yaml f94a84dd3d bump pubspec version %!s(int64=8) %!d(string=hai) anos

README.md

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();

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