build method
Override this method to build widgets that depend on the state of the listenable (e.g., the current value of the animation).
Implementation
@override
Widget build(BuildContext context) {
  return Transform(
    transform: Matrix4.identity()..scale(scale.value * 0.8, 1.0, 1.0),
    alignment: alignment,
    child: child,
  );
}