0 purchases
custom route transition ra
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,
);
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.