Transition.slideFromBottomRight constructor

Transition.slideFromBottomRight({
  1. Curve curve = Curves.easeOut,
})

A transition that slides the child from the bottom right.

Implementation

factory Transition.slideFromBottomRight({Curve curve = Curves.easeOut}) =>
    Transition._([
      (controller, child) => TransitionBuilders.slideFromBottomRight(
            controller,
            child,
            curve: curve,
          ),
    ]);