Skip to content

Instantly share code, notes, and snippets.

@GMetaxakis
Created May 20, 2022 06:12
Show Gist options
  • Save GMetaxakis/7199fa5c595aacec6c922b9db6858faf to your computer and use it in GitHub Desktop.
Save GMetaxakis/7199fa5c595aacec6c922b9db6858faf to your computer and use it in GitHub Desktop.
Navigate to friend profile
/*…*/
@Composable
fun Profile(navController: NavController) {
/*...*/
Button(onClick = {
val profile = Profile("Joe", "Doe")
navController.navigate("friendprofile/${profile}")
}) {
Text(text = "Navigate to Joe Doe")
}
/*...*/
}
/*…*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment