slideFromBottomLeft static method
Widget
slideFromBottomLeft(
- AnimationController controller,
- Widget child, {
- 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,
);
}