flutter_native_web

Last updated:

0 purchases

flutter_native_web Image
flutter_native_web Images
Add to Cart

Description:

flutter native web

flutter_native_web #
Native WebView as a widget in flutter
Inline WebView in flutter using AndroidView and UiKitView
Supported #

Android
iOS


Note

Keypad is not working (No Support by flutter)
Don't use inside scrollview




onPageStarted, onPageFinished Only works with Android


Screenshot #

How to Use #
dependencies:
flutter_native_web: "^1.0.3"
copied to clipboard

import 'package:flutter_native_web/flutterwebview.dart';

copied to clipboard

WebController webController;

FlutterWebView flutterWebView = new FlutterWebView(
onWebCreated: onWebCreated,
);
copied to clipboard
new Container(
child: flutterWebViewString,
height: 300.0,
width: 500.0,
),
copied to clipboard
void onWebCreated(webController) {
this.webController = webController;
this.webController.loadUrl("https://facebook.com");
this.webController.onPageStarted.listen((url) =>
print("Loading $url")
);
this.webController.onPageFinished.listen((url) =>
print("Finished loading $url")
);
}
copied to clipboard
or #
String html = '<body>Hello world! <a href="www.html5rocks.com">HTML5 rocks!';

void onWebCreated(webController) {
this.webController = webController;
this.webController.loadData(html);
this.webController.onPageStarted.listen((url) =>
print("Loading $url")
);
this.webController.onPageFinished.listen((url) =>
print("Finished loading $url")
);
}
copied to clipboard
Android #
Ensure the following permission is present in your Android Manifest file, located in project /android/app/src/main/AndroidManifest.xml:
<uses-permission android:name="android.permission.INTERNET"/>
copied to clipboard
iOS #
Opt-in to the embedded views preview by adding a boolean property to the app's Info.plist file
with the key io.flutter.embedded_views_preview and the value YES.
<key>io.flutter.embedded_views_preview</key>
<string>YES</string>
copied to clipboard
Coming soon #

JSInterface
more (suggest)

License:

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.