説明なし

Hadrien Lejard b9a867f102 Merge pull request #6 from toufikzitouni/master 8 年 前
android 122ba7c940 update plugin registration 8 年 前
example c27fa34fc7 bump version 8 年 前
ios d06a18ca31 FIX: trigger onDestroy and hide topBar in fullScree mode 8 年 前
lib 4e3488bc16 iOS web view plugin 8 年 前
.analysis_options f2b4436fa9 doc 8 年 前
.gitignore 4e3488bc16 iOS web view plugin 8 年 前
CHANGELOG.md c27fa34fc7 bump version 8 年 前
LICENSE feb642eaf0 first commit 8 年 前
README.md 4e3488bc16 iOS web view plugin 8 年 前
flutter_webview_plugin.iml feb642eaf0 first commit 8 年 前
pubspec.yaml f94a84dd3d bump pubspec version 8 年 前

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