FadeEffectExtensions<T extends AnimateManager<T>> extension

Adds FadeEffect related extensions to AnimateManager.

on
  • T

Methods

fade({Duration? delay, Duration? duration, Curve? curve, double? begin, double? end}) → T
Adds a FadeEffect that animates the opacity of the target between the specified begin and end values (via FadeTransition).
fadeIn({Duration? delay, Duration? duration, Curve? curve, double? begin}) → T
Adds a FadeEffect that animates the opacity of the target between the specified begin value and 1.0 (via FadeTransition).
fadeOut({Duration? delay, Duration? duration, Curve? curve, double? begin}) → T
Adds a FadeEffect that animates the opacity of the target between 0.0 and the specified end value (via FadeTransition).