navigatiox 0.0.1 copy "navigatiox: ^0.0.1" to clipboard
navigatiox: ^0.0.1 copied to clipboard

A Flutter package for animated navigations

Navigatiox #

A Flutter package that provides a collection of custom page transition animations to enhance the navigation experience in your Flutter applications. This package includes various transitions such as flip, slide, rotate, and more, allowing developers to create visually appealing navigation flows.

Features #

  • *Wide array of animations: Choose which animation suits your app's design.
  • Customizable: Control animation duration, direction, and starting positions.
  • Lightweight: Designed to be easy to integrate into existing Flutter applications.

Installation #

To use this package, add it to your pubspec.yaml file:

dependencies:
  flutter:
    sdk: flutter
  navigatiox: ^0.1.0 # Replace with the latest version

Then, run the following command to install the package:

flutter pub get

Usage #

To use the package, simply import it in your Dart code:

import 'package:navigatiox/navigatiox.dart';

Here's how to use the Rotate animation for page navigation:

CustomNavigator.pushRotate(
  context: context,
  nextPage: const SecondScreen(),
  duration: const Duration(milliseconds: 500),
  clockwise: true,
  numberOfTurns: 1,
);

Contributing #

Contributions are welcome!

5
likes
0
points
26
downloads

Publisher

unverified uploader

Weekly Downloads

A Flutter package for animated navigations

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter

More

Packages that depend on navigatiox