Route Transitions

Este paquete ayuda a la transiciĆ³n de rutas.

Ejemplo de uso

AwesomeRouteTransitions(
    context: context,   /// BuildContext
    child: Screen2(),   /// PageWidget
    animation: AnimationType.fadeIn,   ///AnimationType
    duration: Duration(Milliseconds: 300),   /// Duracion de la transiciĆ³n
    replacement: false   /// replacement del widget anterior
);