interactive_webview_null_safety 0.2.4 interactive_webview_null_safety: ^0.2.4 copied to clipboard
Plugin that allow Flutter to communicate with a native WebView.
import 'package:flutter/material.dart';
import 'package:interactive_webview_example/news_page.dart';
void main() => runApp(MyApp());
class MyApp extends StatefulWidget {
@override
_MyAppState createState() => _MyAppState();
}
class _MyAppState extends State<MyApp> {
@override
Widget build(BuildContext context) {
return MaterialApp(
home: NewsPage()
);
}
}