A Flutter/Dart utility to parse an SVG path into a equivalent Path object from dart:ui
library.
Add this to your package's pubspec.yaml file:
dependencies:
svg_path_parser: ^1.1.1
Now in your Dart code, you can use:
import 'package:svg_path_parser/svg_path_parser.dart';
You can use parseSvgPath()
to parse a valid SVG path string to Path object;
Path path = parseSvgPath('m.29 47.85 14.58 14.57 62.2-62.2h-29.02z');
View the example folder to see an example (drawing flutter logo using svg paths).