Enjoy Route Transitions

A Flutter package project to manage the route transitions between the screens in a easy way.


    EnjoyRouteTransitions(
        context: context,                       // BuildContect
        child: const Page2(),                   // PageWidget
        animation: AnimationType.fadeIn,        // AnimationType
        duration: Duration(milliseconds: 100),  // Duration
        replacement: true,                      // TypePush
    );