Skip to content

Instantly share code, notes, and snippets.

@fabrizzioRP
Created February 2, 2022 21:59
Show Gist options
  • Save fabrizzioRP/da12635b269f10b27695f2ba9ae5a125 to your computer and use it in GitHub Desktop.
Save fabrizzioRP/da12635b269f10b27695f2ba9ae5a125 to your computer and use it in GitHub Desktop.
Function Navigate FadeIn
Route navigateScreenFadeIn( BuildContext context , Widget screen ) =>
PageRouteBuilder(
pageBuilder : ( _ , __ , ___) => screen,
transitionDuration : const Duration(milliseconds: 300),
transitionBuilder : ( context , animation , _, child) =>
FadeTransition(
opacity : Tween<double>(begin : 0.0 , end : 1.0).animate( CurvedAnimation( parent : animation , curve : Curves.easeOut ) ),
child : child
),
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment