Flutter package that provides easy to use widgets for some of the most used simple animations. Simply wrap the widgets you want to have animated in one of the animation widgets and they will be animated on render.
Uses a fade-in animation to display the wrapped widget on render.
return FadeAnimation(
duration: const Duration(seconds: 1),
delay: const Duration(seconds: 1),
reverse: false,
child: ...
);
Uses a fade-in animation combined with a slide-animation to display the wrapped widget on render. Direction can be customized.
return FadeSlideAnimation(
startingPosition: const Offset(0, 0.3),
duration: const Duration(seconds: 1),
delay: const Duration(seconds: 1),
reverse: false,
child: ...
);
Combines a forward and a backward animation to create a bounce down animation.
return BounceDownAnimation(
child: ...
);
Cycles through the provided strings an animates the transition similarly to the default FadeSlideAnimation widgets fade in animation.
return RotatingText(
["Developer", "Student", "Learner"],
style: Theme.of(context).textTheme.headlineLarge,
);
- add README.md
- improve code documentation
- extend APIs of widgets to provide better customizability
- add more useful simple to use animation widgets