79514492

Date: 2025-03-17 11:57:36
Score: 1
Natty:
Report link
transitionBuilder: (context, animation, secondaryAnimation, child) {
  return SlideTransition(
    position: Tween<Offset>(
      begin: Offset(1, 0), // Start from the right
      end: Offset(0, 0),
    ).animate(animation),
    child: child,
  );
},
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: appvedas