MoveEffectExtensions<T extends AnimateManager<T> > extension
Adds MoveEffect related extensions to AnimateManager.
- on
-
- T
Methods
-
move(
{Duration? delay, Duration? duration, Curve? curve, Offset? begin, Offset? end, bool? transformHitTests}) → T -
Available on T, provided by the MoveEffectExtensions extension
Adds a MoveEffect that moves the target between the specifiedbegin
andend
offsets (via Transform.translate). -
moveX(
{Duration? delay, Duration? duration, Curve? curve, double? begin, double? end, bool? transformHitTests}) → T -
Available on T, provided by the MoveEffectExtensions extension
Adds a MoveEffect that moves the target horizontally between the specifiedbegin
andend
pixel amounts (via Transform.translate). -
moveY(
{Duration? delay, Duration? duration, Curve? curve, double? begin, double? end, bool? transformHitTests}) → T -
Available on T, provided by the MoveEffectExtensions extension
Adds a MoveEffect that moves the target vertically between the specifiedbegin
andend
pixel amounts (via Transform.translate).