combined_animation 0.0.2 combined_animation: ^0.0.2 copied to clipboard
A combined animation widget, contains alignment, opacity, transform for show in and hide out a widget.
A combined animation widget, contains alignment, opacity, transform for show in and hide out a widget.
Features #
- ✅
alignment animation.
- ✅
opacity animation.
- ✅
transform animation.
- ✅
show in animation.
- ✅
hide out animation.
Preview #
Getting started #
flutter pub add combined_animation
Usage #
CombinedAnimation(
state: willRemove?
? AnimationType.end
: AnimationType.start,
onEndOut: () {
doRemove(item);
setState(() {});
},
config: AnimationConfig.fadeAndZoomIn,
child: child,
)