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: ..
)