animate method

  1. @override
Widget animate(
  1. BuildContext context,
  2. Animation<double> animation,
  3. Animation<double> secondaryAnimation,
  4. Widget child,
)
override

Implementation

@override
Widget animate(BuildContext context, Animation<double> animation,
    Animation<double> secondaryAnimation, Widget child) {
  return ScaleTransition(
    scale: Tween<double>(begin: 0, end: 1).animate(animation),
    child: child,
  );
}