Skip to content

Instantly share code, notes, and snippets.

@BrianMwas
Created August 4, 2021 13:52
Show Gist options
  • Save BrianMwas/4deb856aeea1390c6b8070d3af8a2d17 to your computer and use it in GitHub Desktop.
Save BrianMwas/4deb856aeea1390c6b8070d3af8a2d17 to your computer and use it in GitHub Desktop.
// Can be called within controllers
void toDashboard() {
Get.to(
AppLinks.DASHBOARD,
// Transition as a property. Different transitions can be applied. Such as
// fade,
// fadeIn,
// rightToLeft,
// leftToRight,
// upToDown,
// downToUp,
// rightToLeftWithFade,
// leftToRightWithFade,
// zoom,
transition: Transition.fadeIn
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment