scale static method
A transition that scales the child.
Implementation
static Widget scale(
AnimationController controller,
Widget child, {
Curve curve = Curves.easeInOut,
}) {
return ScaleTransition(
scale: CurvedAnimation(parent: controller, curve: curve),
child: child,
);
}