webview_without_view 1.0.4
webview_without_view: ^1.0.4 copied to clipboard
A flutter plugin which allows the usage of the android webkit API without needing to display anything.
example/lib/main.dart
import 'package:flutter/material.dart';
import 'application.dart';
Future<void> main() async {
WidgetsFlutterBinding.ensureInitialized();
await Application.run();
}