Skip to content

Instantly share code, notes, and snippets.

@Rahiche
Created December 13, 2018 19:49
Show Gist options
  • Save Rahiche/4eba1842aa603d85a70d103720a58028 to your computer and use it in GitHub Desktop.
Save Rahiche/4eba1842aa603d85a70d103720a58028 to your computer and use it in GitHub Desktop.
static Widget defaultTransitionBuilder(Widget child, Animation<double> animation) {
return FadeTransition(
opacity: animation,
child: child,
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment