crossview 0.0.3 crossview: ^0.0.3 copied to clipboard
CrossView - Cross-Platform WebView Library for Flutter
import 'package:crossview_example/crossview_example.dart';
import 'package:flutter/material.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatefulWidget {
const MyApp({Key? key}) : super(key: key);
@override
State<MyApp> createState() => _MyAppState();
}
class _MyAppState extends State<MyApp> {
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'CrossView Example App',
debugShowCheckedModeBanner: false,
theme: ThemeData.dark(useMaterial3: true),
home: const CrossViewExample()
);
}
}