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