0 purchases
draw svg
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.
Add dependency in your pubspec.yaml
dependencies:
draw_svg: ^0.0.1
copied to clipboard
Add the SVG asset
assets:
- assets/my_drawing.svg
copied to clipboard
Usage #
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: const Text('HomePage'),
),
body: DrawAnimation.svg('assets/sample.svg'),
);
}
copied to clipboard
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
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.