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.