An open API service indexing awesome lists of open source software.

https://github.com/sajadrahimi1/transition-plus

You can use this package for transition between screens with interesting way with amazing animation.
https://github.com/sajadrahimi1/transition-plus

dart flutter flutter-navigation flutter-package flutter-transition flutter-transition-animations page-navigation pub-dev transition

Last synced: 2 months ago
JSON representation

You can use this package for transition between screens with interesting way with amazing animation.

Awesome Lists containing this project

README

        

# transition plus
You can use this package for transition between screens with interesting way with amazing animation.

## Video of transtion_plus

## How to use it

First of all you need to add it to pubspec.yml .

```yaml
dependencies:
transition_plus: 0.0.12
```

Then import it to your class
```dart
import 'package:transition_plus/transition_plus.dart';
```

Now you can use it like this

```dart
Navigator.push(context, ScaleTransition1(page: SecondPage())),
```

## Diffrent animation

By default transition is start from center of screen. You can change it like this

```dart
Navigator.push(context, ScaleTransition1(page: SecondPage(), type: ScaleTrasitionTypes.bottom)),
```

## List of animation type for scale transition

```dart
// trasition that start from bottom to top
bottom

// trasition that start from top to bottom
top

// trasition that start from bottom left
bottomLeft

// trasition that start from bottom right
bottomRight

// trasition that start from center
center

// trasition that start from right
right

// trasition that start from left
left
```