webviewx_plus 0.5.0 webviewx_plus: ^0.5.0 copied to clipboard
A cross-platform webview using webview_flutter for mobile and iFrame for web.
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_plus Example App',
debugShowCheckedModeBanner: false,
theme: ThemeData(
primarySwatch: Colors.blue,
),
home: const WebViewXPage(),
);
}
}