webview_cef 0.0.8
webview_cef: ^0.0.8 copied to clipboard
Flutter Desktop Webview backed by CEF (Chromium Embedded Framework)
example/lib/main.dart
import 'dart:async';
import 'package:flutter/material.dart';
import 'package:webview_cef/webview_cef.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> {
final _controller = WebViewController();
final _textController = TextEditingController();
String title = "";
@override
void initState() {
super.initState();
initPlatformState();
}
// Platform messages are asynchronous, so we initialize in an async method.
Future<void> initPlatformState() async {
String url = "https://flutter.dev/";
_textController.text = url;
await _controller.initialize();
await _controller.loadUrl(url);
_controller.setWebviewListener(WebviewEventsListener(
onTitleChanged: (t) {
setState(() {
title = t;
});
},
onUrlChanged: (url) {
_textController.text = url;
},
));
// If the widget was removed from the tree while the asynchronous platform
// message was in flight, we want to discard the reply rather than calling
// setState to update our non-existent appearance.
if (!mounted) return;
setState(() {});
}
@override
Widget build(BuildContext context) {
return MaterialApp(
debugShowCheckedModeBanner: false,
theme: ThemeData(useMaterial3: true),
home: Scaffold(
body: Column(
children: [
SizedBox(
height: 20,
child: Text(title),
),
Row(
children: [
SizedBox(
height: 48,
child: MaterialButton(
onPressed: () {
_controller.reload();
},
child: const Icon(Icons.refresh),
),
),
SizedBox(
height: 48,
child: MaterialButton(
onPressed: () {
_controller.goBack();
},
child: const Icon(Icons.arrow_left),
),
),
SizedBox(
height: 48,
child: MaterialButton(
onPressed: () {
_controller.goForward();
},
child: const Icon(Icons.arrow_right),
),
),
SizedBox(
height: 48,
child: MaterialButton(
onPressed: () {
_controller.openDevTools();
},
child: const Icon(Icons.developer_mode),
),
),
Expanded(
child: TextField(
controller: _textController,
onSubmitted: (url) {
if (url.startsWith('http://')) {
_textController.text = url;
_controller.loadUrl(url);
} else if (url.startsWith('https://')) {
_textController.text = url;
_controller.loadUrl(url);
} else if (url.startsWith('www.')) {
_textController.text = 'https://$url';
_controller.loadUrl('https://$url');
} else {
_textController.text = url;
_controller.loadUrl('https://google.com/search?q=$url');
}
},
),
),
],
),
_controller.value
? Expanded(child: WebView(_controller))
: const Text("not init"),
],
)),
);
}
}