svg_drawing_animation 0.11.0 svg_drawing_animation: ^0.11.0 copied to clipboard
Widget for drawing line animations of SVG. Uses flutter_svg for parsing.
import 'package:flutter/material.dart';
import 'package:svg_drawing_animation/svg_drawing_animation.dart';
import 'kanji_svg.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Demo',
home: Scaffold(
appBar: AppBar(title: const Text('Example')),
body: SingleChildScrollView(
child: Padding(
padding: const EdgeInsets.all(16),
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Card(
child: SizedBox(
width: 100,
height: 100,
child: SvgDrawingAnimation(
SvgProvider.string(kanjiSvg),
duration: const Duration(seconds: 4),
repeats: true,
),
),
),
const SizedBox(height: 16),
const Text('Draw the Pen'),
Card(
child: SizedBox(
width: 100,
height: 100,
child: SvgDrawingAnimation(SvgProvider.string(kanjiSvg),
duration: const Duration(seconds: 4),
repeats: true,
penRenderer: CirclePenRenderer(
radius: 15,
paint: Paint()
..color = Colors.redAccent.withAlpha(128))),
),
),
const SizedBox(height: 16),
const Text('Load SVG from URL'),
Card(
child: SizedBox(
width: 300,
height: 300,
child: SvgDrawingAnimation(
SvgProvider.network(
'https://upload.wikimedia.org/wikipedia/commons/4/4a/African_Elephant_SVG.svg'),
duration: const Duration(seconds: 10),
// repeats: true,
),
),
),
const SizedBox(height: 16),
const Text('Custom controller: tap to replay'),
const ReplayableCard(),
]),
),
)),
);
}
}
class ReplayableCard extends StatefulWidget {
const ReplayableCard({super.key});
@override
State<ReplayableCard> createState() => _ReplayableCardState();
}
class _ReplayableCardState extends State<ReplayableCard>
with SingleTickerProviderStateMixin {
late AnimationController controller;
@override
void initState() {
controller =
AnimationController(vsync: this, duration: const Duration(seconds: 5));
controller.forward();
super.initState();
}
@override
void dispose() {
controller.dispose();
super.dispose();
}
@override
Widget build(BuildContext context) {
return GestureDetector(
onTap: () {
controller.reset();
controller.forward();
},
child: Card(
child: SizedBox(
width: 100,
height: 100,
child: SvgDrawingAnimation(SvgProvider.string(kanjiSvg),
animation: controller),
),
),
);
}
}