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