fromLeft static method

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

fromLeft Slide animation, from left to right This method uses SlideTransition widget

Implementation

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