fwfh_webview 0.15.3 fwfh_webview: ^0.15.3 copied to clipboard
WidgetFactory extension to render IFRAME with the official WebView plugin.
import 'package:flutter/material.dart';
import 'package:flutter_widget_from_html_core/flutter_widget_from_html_core.dart';
import 'package:fwfh_webview/fwfh_webview.dart';
void main() => runApp(const MyApp());
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'fwfh_webview',
home: Scaffold(
appBar: AppBar(
title: const Text('WebViewFactory Demo'),
),
body: Center(
child: HtmlWidget(
'<iframe src="https://www.youtube.com/embed/jNQXAC9IVRw"></iframe>',
factoryBuilder: () => MyWidgetFactory(),
),
),
),
);
}
}
class MyWidgetFactory extends WidgetFactory with WebViewFactory {}