flutter_fai_webview 1.3.7 copy "flutter_fai_webview: ^1.3.7" to clipboard
flutter_fai_webview: ^1.3.7 copied to clipboard

Flutter 加载 Html 并实现 JS 双向交互插件

example/lib/main.dart

import 'package:flutter/material.dart';

import 'exampl_index.dart';

void main() => runApp(MyApp());

class MyApp extends StatefulWidget {
  @override
  _MyAppState createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
  @override
  void initState() {
    super.initState();
  }

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: Text("FaiWebViewWidget 加载 html"),
        ),
        body: IndexPage(),
      ),
    );
  }
}
6
likes
125
points
24
downloads

Publisher

unverified uploader

Weekly Downloads

Flutter 加载 Html 并实现 JS 双向交互插件

Repository

Documentation

API reference

License

unknown (license)

Dependencies

flutter

More

Packages that depend on flutter_fai_webview

Packages that implement flutter_fai_webview