slideToBottom static method

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

Animates the position from center to bottom.

Implementation

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