mb_route_transitions 0.1.1 copy "mb_route_transitions: ^0.1.1" to clipboard
mb_route_transitions: ^0.1.1 copied to clipboard

A Flutter package that allows developers to easily navigate between pages.

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,
            );
  • Easier to use constructor with fewer options
MBRouteTransitions.standardTransition(
                context: context, 
                child: Page2(),
            );
1
likes
150
pub points
0%
popularity

Publisher

unverified uploader

A Flutter package that allows developers to easily navigate between pages.

Homepage

Documentation

API reference

License

unknown (license)

Dependencies

flutter

More

Packages that depend on mb_route_transitions