custom_route_transitions_ean 0.0.3
custom_route_transitions_ean: ^0.0.3 copied to clipboard
This package helps to handle transitions between screens in an elegant and easy way.
Route Transitions #
Este paquete ayuda a la transición de rutas
Ejemplo de uso #
/// [context] es el BuildContext
/// [child] Page Widget
/// [animation] AnimationType
/// [duration] Duration
RouteTransitions(
context: context,
child: Page2(), // Page Widget
animation: AnimationType.fadeIn, // AnimationType
duration: Duration( milliseconds: 100 ), // Duration
);