slideFromBottomRight static method
Widget
slideFromBottomRight(
- AnimationController controller,
- Widget child, {
- Curve curve = Curves.easeOut,
A transition that slides the child from the bottom right.
Implementation
static Widget slideFromBottomRight(
AnimationController controller,
Widget child, {
Curve curve = Curves.easeOut,
}) {
return _slideFrom(
controller,
child,
curve: curve,
alignment: Alignment.bottomRight,
);
}