slideFromBottom static method
- AnimationController controller
Slide from bottom animation
Implementation
static Animation<Offset> slideFromBottom(AnimationController controller) {
return Tween<Offset>(
begin: const Offset(0, 0.3),
end: Offset.zero,
).animate(CurvedAnimation(parent: controller, curve: smooth));
}