Skip to content

Instantly share code, notes, and snippets.

@plnice
Created January 21, 2019 08:10
Show Gist options
  • Save plnice/2f8de52f8a8c4440aaf454133be64a88 to your computer and use it in GitHub Desktop.
Save plnice/2f8de52f8a8c4440aaf454133be64a88 to your computer and use it in GitHub Desktop.
distinctNavigate
fun NavController.distinctNavigate(@IdRes resId: Int, args: Bundle? = null, navOptions: NavOptions? = null) {
if (currentDestination?.id != resId) {
navigate(resId, args, navOptions)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment