backInDown static method

SlideTransition backInDown(
  1. Animation<double> animation,
  2. Widget child
)

向下回弹动画

Implementation

static SlideTransition backInDown(
  Animation<double> animation,
  Widget child,
) {
  return SlideTransition(
    position: Tween<Offset>(
      begin: const Offset(0.0, -1.0),
      end: Offset.zero,
    ).animate(CurvedAnimation(
      parent: animation,
      curve: Curves.easeInOut,
    )),
    child: child,
  );
}