custom_route_transition_ra 0.0.3
custom_route_transition_ra: ^0.0.3 copied to clipboard
This packages main objective is to help you manage pages transitions easily and better. So you don't have to worry and fill your code navigating between pages
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,
);