Skip to content

Instantly share code, notes, and snippets.

@dilrajsingh1997
Created November 20, 2021 12:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dilrajsingh1997/d2dddc5f28dfb00dc79eedad38293351 to your computer and use it in GitHub Desktop.
Save dilrajsingh1997/d2dddc5f28dfb00dc79eedad38293351 to your computer and use it in GitHub Desktop.
class NavigationGraph(private val navHostController: NavHostController) {
val openUserPage: (String, Boolean) -> Unit = { userId, isLoggedIn ->
navHostController.navigate("userPage?" +
"userId=$userId," +
"isLoggedIn=$isLoggedIn"
)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment