Last updated:
0 purchases
path animation
A Flutter package, path animation - that is used to moving the widget on given path.
Getting started #
This will add a line like this to your package's pubspec.yaml (and run an implicit flutter pub get):
dependencies:
path_animation: ^1.1.0
copied to clipboard
Usage #
import 'package:path_animation/widget/path_animation.dart';
PathAnimation(
path: Path()..addOval(const Rect.fromLTWH(0, 0, 100, 100)), // Set the path.
duration: const Duration(milliseconds: 2000),
repeat: true,
reverse: false,
curve: Curves.decelerate,
startAnimatedPercent: 0.25,
drawPath: true,
pathColor: Colors.red,
pathWidth: 1,
child: const Icon( // The Widget you want to animated to cross the path.
Icons.flutter_dash,
size: 30,
),
),
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.