smooth_transition library
A Flutter package that provides smooth page transition animations.
This library allows you to easily add animated transitions between pages, such as fade, scale, rotate, sliding directions, and special effects like elastic scaling, flip, and combined animations.
Example usage:
Navigator.push(
context,
PageTransition(
child: SecondPage(),
type: PageTransitionType.scaleFade,
duration: const Duration(milliseconds: 600),
),
);
Classes
- PageTransition
- A custom PageRouteBuilder that applies different transition animations when navigating between pages.
Enums
- PageTransitionType
- The available types of page transition animations.