ScaleEffectExtensions<T extends AnimateManager<T> > extension
Adds ScaleEffect related extensions to AnimateManager.
- on
-
- T
Methods
-
scale(
{Duration? delay, Duration? duration, Curve? curve, Offset? begin, Offset? end, Alignment? alignment, bool? transformHitTests}) → T -
Available on T, provided by the ScaleEffectExtensions extension
Adds a ScaleEffect that scales the target between the specifiedbegin
andend
offset values (via Transform.scale). -
scaleX(
{Duration? delay, Duration? duration, Curve? curve, double? begin, double? end, Alignment? alignment, bool? transformHitTests}) → T -
Available on T, provided by the ScaleEffectExtensions extension
Adds a ScaleEffect that scales the target horizontally between the specifiedbegin
andend
values (via Transform.scale). -
scaleXY(
{Duration? delay, Duration? duration, Curve? curve, double? begin, double? end, Alignment? alignment, bool? transformHitTests}) → T -
Available on T, provided by the ScaleEffectExtensions extension
Adds a ScaleEffect that scales the target uniformly between the specifiedbegin
andend
values (via Transform.scale). -
scaleY(
{Duration? delay, Duration? duration, Curve? curve, double? begin, double? end, Alignment? alignment, bool? transformHitTests}) → T -
Available on T, provided by the ScaleEffectExtensions extension
Adds a ScaleEffect that scales the target vertically between the specifiedbegin
andend
values (via Transform.scale).