animated_grow 0.0.1
animated_grow: ^0.0.1 copied to clipboard
AnimatedGrow is awesome and useful library of animation. It will give you the moves you really wanted.
animated_grow #
AnimatedGrow - Widgets can be easily moved.
GrowIn | GrowOut |
---|---|
GrowIn #
GrowIn(
direction: GrowDirection.leftToRight,
child: ..
)
GrowOut #
GrowOut(
direction: GrowDirection.rightToLeft,
child: ..
)
GrowController #
AnimationController? controller;
GrowIn(
controller: (growController) => controller = growController;
direction: GrowDirection.leftToRight,
child: ..
)
Collapsed widget #
- true: collapsed widget(default)
- false: not widget
GrowIn(
direction: GrowDirection.leftToRight,
collapsed: false,
child: ..
)
Fixed child widget #
- true: fixed child widget
- false: not fixed child widget(default)
GrowIn(
direction: GrowDirection.leftToRight,
fixed: true,
child: ..
)