scaleAnimation property

Animation<double> scaleAnimation
getter/setter pair

Implementation

late Animation<double> scaleAnimation =
    Tween<double>(begin: 1.0, end: 1.4).animate(CurvedAnimation(
  parent: _controller!,
  curve: const Interval(
    0.6,
    1.0,
    curve: Curves.easeIn,
  ),
));