transitioner 0.0.1
transitioner: ^0.0.1 copied to clipboard
This package helps how to manage transitions between different views/pages with custom curve animation also.
Transitioner #
This package helps how to manage transitions between different views/pages.
I am going to add more types of transitions, keep posted.
Use example case #
/// Transitioner Class
///
/// [context] from the BuildContext
/// [child] destiny View/Page
/// [animation] type of transition to show
/// [duration] duration of animation
/// [replacement] replace entirely the scope or not
/// [curveType] type of animationCurve to show
Transitioner(
context: context,
child: UnoPage(),
animation: AnimationType.fadeIn, // Optional value
duration: Duration(milliseconds: 2000), // Optional value
replacement: true, // Optional value
curveType: CurveType.decelerate, // Optional value
);
Video Example #