build method

  1. @override
Widget build(
  1. Animation<double> animation
)
override

Return animated widget with provided animation.

Implementation

@override
Widget build(Animation<double> animation) {
  return ScaleTransition(scale: animation, child: child);
}