Route Transitions
This package implements FadeIn transitions to navigate beteween many screens.
Ejemplo de uso
RouteTransitions(
context: context, // Buildcontext
child: const Page2(), // Page Wdiget
animation: AnimationType.fadeIn, // AnimationType
duration: const Duration(seconds: 5), // Duration
replacement: true,
);