FadeEffectExtensions<T> extension

on

Methods

fade({Duration? delay, Duration? duration, Curve? curve, double? begin, double? end}) → T

Available on AnimateManager<T>, provided by the FadeEffectExtensions extension

Adds a .fade() extension to AnimateManager (Animate and AnimateList).
fadeIn({Duration? delay, Duration? duration, Curve? curve, double? begin, double? end}) → T

Available on AnimateManager<T>, provided by the FadeEffectExtensions extension

Adds a .fadeIn() extension to AnimateManager (Animate and AnimateList). This is identical to the .fade() extension, but is included for semantic clarity.
fadeOut({Duration? delay, Duration? duration, Curve? curve, double? begin, double? end}) → T

Available on AnimateManager<T>, provided by the FadeEffectExtensions extension

Adds a .fadeOut() extension to AnimateManager (Animate and AnimateList). This is identical to the .fade() extension, except it defaults to begin=1, end=0.