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
Adds a ScaleEffect that scales the target between the specified begin and end offset values (via Transform.scale).
scaleX({Duration? delay, Duration? duration, Curve? curve, double? begin, double? end, Alignment? alignment, bool? transformHitTests}) → T
Adds a ScaleEffect that scales the target horizontally between the specified begin and end values (via Transform.scale).
scaleXY({Duration? delay, Duration? duration, Curve? curve, double? begin, double? end, Alignment? alignment, bool? transformHitTests}) → T
Adds a ScaleEffect that scales the target uniformly between the specified begin and end values (via Transform.scale).
scaleY({Duration? delay, Duration? duration, Curve? curve, double? begin, double? end, Alignment? alignment, bool? transformHitTests}) → T
Adds a ScaleEffect that scales the target vertically between the specified begin and end values (via Transform.scale).