This rendering library exposes a way to to render SVG paths in a drawing like fashion.

Features

| |more coming soon
... |

Getting started

To get started with the draw_svg package you need a valid Svg file.

  1. Add dependency in your pubspec.yaml
dependencies:
  draw_svg: ^0.0.1

  1. Add the SVG asset
assets:
  - assets/my_drawing.svg

Usage


    Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: const Text('HomePage'),
      ),
      body: DrawAnimation.svg('assets/sample.svg'),
    );
  }

Additional information

Credits

This package is highly inspired by the drawing animation package which is no longer maintaine . Try to rewrite this package in more modern way.

Author

Faisal Kabir Galib

Libraries

draw_svg