fadeIn static method

Animation<double> fadeIn(
  1. AnimationController controller
)

Fade in animation

Implementation

static Animation<double> fadeIn(AnimationController controller) {
  return CurvedAnimation(
    parent: controller,
    curve: smooth,
  );
}