bouncy method

Widget bouncy({
  1. required Widget to(
    1. BuildContext context,
    2. double animatedValue
    ),
})

Create a bouncy spring animation.

Implementation

Widget bouncy({
  required Widget Function(BuildContext context, double animatedValue) to,
}) {
  return SpringSlot<T>(
    connect: this,
    to: to,
    spring: SpringConfig.bouncy,
  );
}