webviewx_plus 0.3.1+1 
webviewx_plus: ^0.3.1+1 copied to clipboard
A cross-platform webview using webview_flutter for mobile and iFrame for web.
example/lib/main.dart
import 'package:flutter/material.dart';
import 'webview_page.dart';
void main() {
  runApp(const MyApp());
}
class MyApp extends StatelessWidget {
  const MyApp({Key? key}) : super(key: key);
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'WebViewX Example App',
      debugShowCheckedModeBanner: false,
      theme: ThemeData(
        primarySwatch: Colors.blue,
      ),
      home: const WebViewXPage(),
    );
  }
}