Could someone provide a clear explanation or example code demonstrating how to navigate between destinations and pass arguments using Jetpack Compose?
In LoginPage1 when I click on button I want to go to next page with same param
//MainActivity.kt
Surface(
modifier = Modifier.fillMaxSize(),
color = MaterialTheme.colorScheme.background
) {
LoginPage1(navController)
}
//LoginPage1
Button(
onClick = { "go to next page" },
shape = MaterialTheme.shapes.medium,
colors = ButtonDefaults.buttonColors(orange),
) {
}
I tried this but I get a java.lang.NullPointerException
:
Button(
onClick = { navController.navigate("onboardingPage1") },
shape = MaterialTheme.shapes.medium,
colors = ButtonDefaults.buttonColors(orange),
)
In Jetpack Compose, we can use the NavController to navigate between composable functions. We can also pass arguments between destinations. First, you need to set up your navigation in your MainActivity.kt:
{param} is a placeholder here for the argument that you want to pass to onboardingpage1.
Then, in LoginPage1, you can navigate to onboardingpage1 and pass an argument like:
Here also replace "onboardingpage1/actual_value" with your actual route and parameter.
In onboardingpage1, you can retrieve the passed argument like:
The NullPointerException you’re seeing might be due to navController being null at the time of the onClick event. Make sure navController is properly initialized before it’s used.