custom_page_route 0.0.2 copy "custom_page_route: ^0.0.2" to clipboard
custom_page_route: ^0.0.2 copied to clipboard

A cutom page transition left to right, bottom to top and add your own Route Navigation Transitions in Flutter..

custom_page_route #

A cutom animation for page route.

Getting Started #

** CustomPageRoute class constructor **

CustomPageRoute({
    required Widget child,
    AxisDirection axisDirection = AxisDirection.right,
    Duration transitionDuration = const Duration(milliseconds: 500), 
    Duration reverseTransitionDuration = const Duration(milliseconds: 500)
    })

Example,

 Navigator.push(
            context,
            CustomPageRoute(
            axisDirection: AxisDirection.left,
            child: Page1(),
        ),
    );

5
likes
140
pub points
23%
popularity

Publisher

verified publishershibu.dev

A cutom page transition left to right, bottom to top and add your own Route Navigation Transitions in Flutter..

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on custom_page_route