FadePageAnimation<T> constructor
FadePageAnimation<T> ({
- required Widget page,
Implementation
FadePageAnimation({required this.page})
: super(
pageBuilder: (context, animation, secondaryAnimation) => page,
transitionsBuilder: (context, animation, secondaryAnimation, child) {
var curve = Curves.easeInOut;
var tween =
Tween(begin: 0.0, end: 1.0).chain(CurveTween(curve: curve));
var fadeAnimation = animation.drive(tween);
return FadeTransition(opacity: fadeAnimation, child: child);
},
);