brabo-hi
08/14/2023, 9:13 PMnavController.navigate("profile") // here i want to send `userId`
navigation(route = "profile", startDestination = "profile/{userId}") {
composable("profile/{userId}") { backStackEntry ->
Profile(navController, backStackEntry.arguments?.getString("userId"))
}
}