flutter_sequence_animation
- No need to use intervals and calculate percentages for your total animation time.
- Animate the same variable with multiple animatables!
- You only need one AnimationController
- Intuitive and easy to use interface
Installation
This PR introduced breaking changes to the animation
API. If your are above that version use
dependencies:
flutter_sequence_animation: "^3.0.0"
else
dependencies:
flutter_sequence_animation: "^2.0.0"
then
$ flutter packages get
then
import 'package:flutter_sequence_animation/flutter_sequence_animation.dart';
Demo
Code
The Staggered Animation example from here is
207 lines of code .
The same animation with this package is 128 lines of code.
It is also much easier to read and edit.
You specify a sequence of animatables like this:
In this case only the color is animated but you can add as many different properties to the sequence as you'd like to.
The only restriction is that animations with the same tag can not overlap and need to be ordered.
Now you can access the resulting animation from anywhere in your code with
This animation is a composition of all animatables you passed in with the same tag.