Last updated:
0 purchases
mb route transitions
MB Route Transitions #
Features #
This small package allows the developer to handle transitions between pages with ease(In).
Getting started #
This package is really a simple one. You just have to call MBRouteTransitions with a few parameters to transition to another page with zero effor.
Usage #
Standard and more customisable constructor
MBRouteTransitions(
context: context,
child: Page2(),
animation: AnimationType.fadeIn,
replacement: false,
duration: const Duration(seconds: 1),
curve: Curves.easeInCirc,
fadeBegin: 0.2,
fadeEnd: 1,
);
copied to clipboard
Easier to use constructor with fewer options
MBRouteTransitions.standardTransition(
context: context,
child: Page2(),
);
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.