quick_transition

A new Flutter plugin for quick page transition.

This package you will get page transition

flutter platform pub package BSD-2-Clause

Demo

preview

Usage

It is really easy to use! You should ensure that you add the quick_transition as a dependency in your flutter project.

dependencies:
  quick_transition: "^0.0.1"

Than you can use it with below examples.

 Navigator.push(context,QuickTransitionRoute(mode: TransitionMode.leftToRight,child: const NewScreen()));

 Navigator.push(context,QuickTransitionRoute(mode: TransitionMode.rightToLeft,child: const NewScreen()));

 Navigator.push(context,QuickTransitionRoute(mode: TransitionMode.zoom,child: const NewScreen()));

 Navigator.push(context,QuickTransitionRoute(mode: TransitionMode.topToBottom,child: const NewScreen()));

 Navigator.push(context,QuickTransitionRoute(mode: TransitionMode.bottomToTop,child: const NewScreen()));

Transition Mode

  • zoom
  • rightToLeft
  • leftToRight
  • topToBottom
  • bottomToTop

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Please make sure to update tests as appropriate.

Getting Started

This project is a starting point for a Flutter plug-in package, a specialized package that includes platform-specific implementation code for Android and/or iOS.

For help getting started with Flutter development, view the online documentation, which offers tutorials, samples, guidance on mobile development, and a full API reference.