webview_flutter_plus 0.0.1 copy "webview_flutter_plus: ^0.0.1" to clipboard
webview_flutter_plus: ^0.0.1 copied to clipboard

outdated

An extension of webview_flutter to load HTML,CSS and Javascript even from Assets or Strings.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:webview_flutter_plus/webview_flutter_plus.dart';

void main() {
  runApp(InAppWebAppExample());
}

class InAppWebAppExample extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: InAppWebAppMainPage(),
    );
  }
}

class InAppWebAppMainPage extends StatefulWidget {
  @override
  _InAppWebAppMainPageState createState() => _InAppWebAppMainPageState();
}

class _InAppWebAppMainPageState extends State<InAppWebAppMainPage> {
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: Text('InAppWebApp Example'),
      ),
      body: WebViewPlus(
        onWebViewCreated: (controller) {
          controller.loadAsset('assets/index.html');
        },
        javascriptMode: JavascriptMode.unrestricted,
      ),
    );
  }
}
142
likes
0
pub points
96%
popularity

Publisher

verified publishershahxad.com

An extension of webview_flutter to load HTML,CSS and Javascript even from Assets or Strings.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter, mime, webview_flutter

More

Packages that depend on webview_flutter_plus