route_transitions_os 0.0.4
route_transitions_os: ^0.0.4 copied to clipboard
This package helps to make animated transitions between screens, in a practical and easy to implement way.
Route Transitions #
Este paquete ayuda a la transición entre rutas
Ejemplo de uso #
RouteTransitions(
context: context, // BuildContext
child: Page2(), // PageWidget
animation: AnimationType.fadeIn, // AnimationType (Enum)
duration: Duration(milliseconds: 700), // Duration
replacement: true, // replacement page
);