slideInFromTop method
Wraps the widget with a slide-in animation from the top.
Example:
Text('Hello').slideInFromTop();
Implementation
Widget slideInFromTop({
Duration duration = const Duration(milliseconds: 300),
Duration delay = Duration.zero,
Curve curve = Curves.easeOutCubic,
double offset = 1.0,
}) {
return _SlideInWidget(
duration: duration,
delay: delay,
curve: curve,
beginOffset: Offset(0, -offset),
child: this,
);
}