Route transition

This package allows transition between screens in a fast, simple and configurable way.

RouteTransition(
    context: context, // BuildContext
    child: PageDos(), // Widget screen
    animation: AnimationType.fadeIn, // AnimationType
    duration: Duration(seconds: 150), // Time
    replacement: true // pushReplacement or push
);`