slideFromBottomLeft static method

Widget slideFromBottomLeft(
  1. AnimationController controller,
  2. Widget child, {
  3. Curve curve = Curves.easeOut,
})

A transition that slides the child from the bottom left.

Implementation

static Widget slideFromBottomLeft(
  AnimationController controller,
  Widget child, {
  Curve curve = Curves.easeOut,
}) {
  return _slideFrom(
    controller,
    child,
    curve: curve,
    alignment: Alignment.bottomLeft,
  );
}