svg_maker 0.0.1 copy "svg_maker: ^0.0.1" to clipboard
svg_maker: ^0.0.1 copied to clipboard

Package that helps with svg creation. After creating an svg object user can add elements and modify their attributes.

Flutter package that helps with svg creation.

pub package

Usage #

    final Svg svg = Svg.create(width: "200", height: "100")
      ..addShape(
        SvgRect()
          ..width = '200'
          ..height = '200'
          ..fill = Colors.orange,
      )
      ..addText(
        SvgText()
          ..addString('test string')
          ..x = '100'
          ..y = '50'
          ..textAnchor = TextAnchorValue.middle,
      );

Simple svg with text

1
likes
0
points
293
downloads

Publisher

unverified uploader

Weekly Downloads

Package that helps with svg creation. After creating an svg object user can add elements and modify their attributes.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter

More

Packages that depend on svg_maker