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
Adds a MoveEffect that moves the target between the specified begin and end offsets (via Transform.translate).
moveX({Duration? delay, Duration? duration, Curve? curve, double? begin, double? end, bool? transformHitTests}) → T
Adds a MoveEffect that moves the target horizontally between the specified begin and end pixel amounts (via Transform.translate).
moveY({Duration? delay, Duration? duration, Curve? curve, double? begin, double? end, bool? transformHitTests}) → T
Adds a MoveEffect that moves the target vertically between the specified begin and end pixel amounts (via Transform.translate).