slideToRight static method

MotionWidgetBuilder slideToRight({
  1. double factor = 1.0,
})

Animates the position from center to right.

Implementation

static MotionWidgetBuilder slideToRight({
  double factor = 1.0,
}) =>
    slideTo(
      Alignment.centerRight,
      factor: factor,
    );