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

Libraries

svg_maker