TintEffectExtensions<T extends AnimateManager<T> > extension
Adds TintEffect related extensions to AnimateManager.
- on
-
- T
Methods
-
tint(
{Duration? delay, Duration? duration, Curve? curve, double? begin, double? end, Color? color}) → T -
Available on T, provided by the TintEffectExtensions extension
Adds a TintEffect that applies an animatedcolor
tint to the target (via ColorFiltered). Defaults to a begin value of0
(0% tint) and an end value of1
(100% tint). -
untint(
{Duration? delay, Duration? duration, Curve? curve, double? begin, double? end, Color? color}) → T -
Available on T, provided by the TintEffectExtensions extension
Adds a TintEffect that applies an animatedcolor
tint to the target (via ColorFiltered). Defaults to a begin value of1
(100% tint) and an end value of0
(0% tint).