createFadeTransition static method

Animation<double> createFadeTransition(
  1. AnimationController controller
)

Implementation

static Animation<double> createFadeTransition(AnimationController controller) {
  return CurvedAnimation(
    parent: controller,
    curve: RALIAnimationCurve.standard,
  );
}