FadeTransition and AnimatedOpacity are not in sync with each other

I missed the reverseCurve parameter.

FadeTransition(
  opacity: CurvedAnimation(
    parent: _controller,
    curve: _curve,
    reverseCurve: _curve, // Solved the problem. 
  ),
  child: box,
)

CLICK HERE to find out more related problems solutions.

Leave a Comment

Your email address will not be published.

Scroll to Top