flipH method
T
flipH({})
Adds a flipH extension to AnimateManager (Animate and AnimateList).
This is identical to the flip extension, except it always uses direction = Axis.horizontal
.
Implementation
T flipH({
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.horizontal,
));