Route transitions

Package for modifiyng the transition of routes

Use example

///[context] is the BuildContext
 RouteTranstions(
     child: Page2(),   //Page Widget
     context: context, //BuildContext
     replacement: false, //Replacment
     animation: AnimationType.fadeIn, //AnimationType
     duration: const Duration(seconds: 1) // Duration
   );