route_transition_dev 0.0.3
route_transition_dev: ^0.0.3 copied to clipboard
A new flutter package that allows using transitions between screens.
Route transition #
This package allows transition between screens in a fast, simple and configurable way.
RouteTransition(
context: context, // BuildContext
child: PageDos(), // Widget screen
animation: AnimationType.fadeIn, // AnimationType
duration: Duration(seconds: 150), // Time
replacement: true // pushReplacement or push
);`