animated_transitions 1.0.2 copy "animated_transitions: ^1.0.2" to clipboard
animated_transitions: ^1.0.2 copied to clipboard

A collection of beautiful transitions to navigate between pages in a Flutter app.

Animated Transitions #

A Flutter package providing a collection of beautiful and smooth transitions for page navigation

Features #

  • A set of high-quality page transitions.
  • Simple, controller-based animation management.
  • Customizable transition duration and behavior.
  • Works with the standard Flutter Navigator.

Installation #

Add this to your package's pubspec.yaml file:

dependencies:
  animated_transitions: ^1.0.2

Then, run flutter pub get in your terminal.

Usage #

To use the page transitions, you can wrap your page route with the TransitionPageRoute and provide a transition type.

import 'package:flutter/material.dart';
import 'package:animated_transitions/animated_transitions.dart';

// ...

Navigator.of(context).push(
  TransitionPageRoute(
    builder: (context) => const NextScreen(),
    transitionAnimation: GrowingBarsTransition(),
  ),
);

For more advanced usage and a full list of available transitions, please see the example application in the /example directory.

10
likes
0
points
19
downloads

Publisher

verified publisherbaansoftware.com

Weekly Downloads

A collection of beautiful transitions to navigate between pages in a Flutter app.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter

More

Packages that depend on animated_transitions