Skip to content

Instantly share code, notes, and snippets.

@kodenatan17
Created November 17, 2022 06:47
Show Gist options
  • Save kodenatan17/e04ba12ffccd5e348c89205af308d323 to your computer and use it in GitHub Desktop.
Save kodenatan17/e04ba12ffccd5e348c89205af308d323 to your computer and use it in GitHub Desktop.
Widget build(BuildContext context) {
return GetMaterialApp(
title: "Tangani App",
initialRoute: Routes.REGISTRATION_EMAIL,
getPages: AppPages.routes,
theme: ThemeData(
canvasColor: Colors.transparent,
primaryColor: Colors.transparent,
pageTransitionsTheme: const PageTransitionsTheme(builders: {
TargetPlatform.android: FadeUpwardsPageTransitionsBuilder(),
TargetPlatform.iOS: FadeUpwardsPageTransitionsBuilder(),
}),
),
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment