backInLeft static method

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

向左回弹动画

Implementation

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