fwfh_svg 0.7.1 copy "fwfh_svg: ^0.7.1" to clipboard
fwfh_svg: ^0.7.1 copied to clipboard

outdated

WidgetFactory extension to render SVG with flutter_svg plugin.

SvgFactory #

Flutter codecov Pub

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.7.1

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 {
}

Configuration #

SvgFactory has a few getters to change its behavior. See the API reference for the up to date list. Override them in your factory like this:

class MyWidgetFactory extends WidgetFactory with SvgFactory {
  @override
  bool get svgAllowDrawingOutsideViewBox => true;
}
3
likes
0
pub points
96%
popularity

Publisher

verified publisherdaohoangson.com

WidgetFactory extension to render SVG with flutter_svg plugin.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter, flutter_svg, flutter_widget_from_html_core

More

Packages that depend on fwfh_svg