smooth method
- required Widget to(
- BuildContext context,
- double animatedValue
Create a smooth spring animation.
Implementation
Widget smooth({
required Widget Function(BuildContext context, double animatedValue) to,
}) {
return SpringSlot<T>(
connect: this,
to: to,
spring: SpringConfig.smooth,
);
}