webview_dart 1.0.1 webview_dart: ^1.0.1 copied to clipboard
Dart bindings for webview, A tiny cross-platform webview library to build modern cross-platform GUIs
example/webview_dart_example.dart
import 'package:webview_dart/webview_dart.dart';
void main() async {
final url = "https://www.google.com";
Webview(true)
.setTitle("Google")
.setSize(1280, 800,
SizeHint.none /* Sizehint is optional and can be omitted */)
.navigate(url)
.run();
}