moveY method
T
moveY({})
Adds a moveY extension to AnimateManager (Animate and AnimateList).
This moves only on the y-axis according to the double
begin/end values.
Implementation
T moveY({
Duration? delay,
Duration? duration,
Curve? curve,
double? begin,
double? end,
bool? transformHitTests,
}) {
begin ??= end == null ? MoveEffect.defaultMove : MoveEffect.neutralMove;
end ??= MoveEffect.neutralMove;
return addEffect(MoveEffect(
delay: delay,
duration: duration,
curve: curve,
begin: MoveEffect.neutralValue.copyWith(dy: begin),
end: MoveEffect.neutralValue.copyWith(dy: end),
transformHitTests: transformHitTests,
));
}