Keine Beschreibung

Hadrien Lejard dca43dee17 Merge pull request #3 from toufikzitouni/master vor 8 Jahren
android 122ba7c940 update plugin registration vor 8 Jahren
example 4e3488bc16 iOS web view plugin vor 8 Jahren
ios 4e3488bc16 iOS web view plugin vor 8 Jahren
lib 4e3488bc16 iOS web view plugin vor 8 Jahren
.analysis_options f2b4436fa9 doc vor 8 Jahren
.gitignore 4e3488bc16 iOS web view plugin vor 8 Jahren
CHANGELOG.md f2b4436fa9 doc vor 8 Jahren
LICENSE feb642eaf0 first commit vor 8 Jahren
README.md 4e3488bc16 iOS web view plugin vor 8 Jahren
flutter_webview_plugin.iml feb642eaf0 first commit vor 8 Jahren
pubspec.yaml 4e3488bc16 iOS web view plugin vor 8 Jahren

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