flipV method
T
flipV({})
Adds a flipV extension to AnimateManager (Animate and AnimateList).
This is identical to the flip extension, except it always uses direction = Axis.vertical
.
Implementation
T flipV({
Duration? delay,
Duration? duration,
Curve? curve,
double? begin,
double? end,
Alignment? alignment,
double? perspective,
}) =>
addEffect(FlipEffect(
delay: delay,
duration: duration,
curve: curve,
begin: begin,
end: end,
alignment: alignment,
perspective: perspective,
direction: Axis.vertical,
));