Route Transitions

This package manages navigation and animations between pages.

Usage example

///[context] is BuildContext and it is required, [child] is page widget you want 
///to navigate to and its required, the other data is optional
RouteTranstitions(
    context: context,  // BuildContext
    child: Page2(),  // Page widget
    animation: AnimationType.fadeIn,  //AnimationType
    duration: Duration(seconds: 2),  // Duration
    replacement: true,
);