fromRight static method

dynamic fromRight(
  1. Animation<double> animation,
  2. Animation<double> secondaryAnimation,
  3. Widget child
)

Implementation

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