flutter_native_web 0.1.2 copy "flutter_native_web: ^0.1.2" to clipboard
flutter_native_web: ^0.1.2 copied to clipboard

outdated

Flutter Plugin that Renders Native Webview as a widget in flutter

flutter_native_web #

Native WebView as a widget in flutter

Inline WebView in flutter using AndroidView

Supported #

  • Android

Note

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

Screenshot #

Screenshot

How to Use #


dependencies:
  flutter_native_web: "^0.1.2"
  

import 'package:flutter_native_web/flutterwebview.dart';


WebController webController;

FlutterWebView flutterWebView = new FlutterWebView(
  onWebCreated: onWebCreated,
);
 new Container(
    child: flutterWebViewString,
    height: 300.0,
    width: 500.0,
 ),
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")
    );
}

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")
    );
}

Android #

Ensure the following permission is present in your Android Manifest file, located in `

<uses-permission android:name="android.permission.INTERNET"/>

Coming soon #

  • JSInterface
  • more (suggest)
7
likes
40
pub points
50%
popularity

Publisher

verified publisherkarthikponnam.dev

Flutter Plugin that Renders Native Webview as a widget in flutter

Repository (GitHub)
View/report issues

License

Apache-2.0 (LICENSE)

Dependencies

flutter

More

Packages that depend on flutter_native_web