Skip to content

Instantly share code, notes, and snippets.

@tpakis
Last active April 2, 2020 21:28
Show Gist options
  • Save tpakis/9715e0876550f54da800a31cc7623904 to your computer and use it in GitHub Desktop.
Save tpakis/9715e0876550f54da800a31cc7623904 to your computer and use it in GitHub Desktop.
private fun handleNavigationEvent(nextStep: Int?) {
if (nextStep != null) {
try {
navController.navigate(R.id.next, bundleOf(STEP_BUNDLE_KEY to nextStep))
// if there is no next step then finish
} catch (e: IllegalArgumentException) {
finish()
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment