flutter_nav_ease

Last updated:

0 purchases

flutter_nav_ease Image
flutter_nav_ease Images
Add to Cart

Description:

flutter nav ease

Flutter Nav Ease #
Flutter Nav Ease is a package that provides a variety of page transition animations to enhance the user experience in your Flutter applications. This package includes several types of transitions, such as slide, fade, scale, rotation, and more, allowing you to easily implement smooth and visually appealing transitions between pages.
Features #

Slide transitions from various directions (right, left, top, bottom).
Fade transition.
Scale transition.
Rotation transition.
Size transition.
Zoom transition.

Getting started #
To start using the Flutter Nav Ease package, add it to your pubspec.yaml:
dependencies:
flutter_nav_ease: ^1.0.0
copied to clipboard
Then, import the package in your Dart code:
import 'package:flutter_nav_ease/flutter_nav_ease.dart';
copied to clipboard
Usage #
Here are some examples of how to use the different transitions provided by this package:
Slide Transition from Right #
Navigator.of(context).push(NavPageRoute.slideFromRightRoute(nextPage: SecondPage()));
copied to clipboard
Slide Transition from Left #
Navigator.of(context).push(NavPageRoute.slideFromLeftRoute(nextPage: SecondPage()));
copied to clipboard
Slide Transition from Top #
Navigator.of(context).push(NavPageRoute.slideFromTopRoute(nextPage: SecondPage()));
copied to clipboard
Slide Transition from Bottom #
Navigator.of(context).push(NavPageRoute.slideFromBottomRoute(nextPage: SecondPage()));
copied to clipboard
Fade Transition #
Navigator.of(context).push(NavPageRoute.fadeRoute(nextPage: SecondPage()));
copied to clipboard
Scale Transition #
Navigator.of(context).push(NavPageRoute.scaleRoute(nextPage: SecondPage()));
copied to clipboard
Rotation Transition #
Navigator.of(context).push(NavPageRoute.rotationRoute(nextPage: SecondPage()));
copied to clipboard
Size Transition #
Navigator.of(context).push(NavPageRoute.sizeRoute(nextPage: SecondPage()));
copied to clipboard
Zoom Transition #
Navigator.of(context).push(NavPageRoute.zoomRoute(nextPage: SecondPage()));
copied to clipboard
Additional information #
For more information about the Flutter Nav Ease package, including detailed documentation and examples, visit the GitHub repository.
Contributing #
Contributions are welcome! If you have ideas for improvements or new features, feel free to open an issue or submit a pull request on GitHub.
Filing Issues #
If you encounter any issues or bugs, please file an issue on the GitHub issue tracker. We will try to respond and address the issues as quickly as possible.
Author #
This package is maintained by Serge JK(https://github.com/serge129000).

License:

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.