fwfh_svg 0.6.0 fwfh_svg: ^0.6.0 copied to clipboard
WidgetFactory extension to render SVG with flutter_svg plugin.
SvgFactory #
WidgetFactory extension to render SVG with flutter_svg plugin. This is a companion add-on for flutter_widget_from_html_core package.
Getting Started #
Add this to your app's pubspec.yaml
file:
dependencies:
flutter_widget_from_html_core: any
fwfh_svg: ^0.6.0
Usage #
Then use HtmlWidget
with a custom factory:
import 'package:flutter_widget_from_html_core/flutter_widget_from_html_core.dart';
import 'package:fwfh_svg/fwfh_svg.dart';
// ...
HtmlWidget(
html,
factoryBuilder: () => MyWidgetFactory(),
)
// ...
class MyWidgetFactory extends WidgetFactory with SvgFactory {
}