Skip to content

Instantly share code, notes, and snippets.

@Debdutta-Panda
Created June 2, 2022 17:54
Show Gist options
  • Save Debdutta-Panda/8c4f3f35c50298482cdd73c22ec0bc50 to your computer and use it in GitHub Desktop.
Save Debdutta-Panda/8c4f3f35c50298482cdd73c22ec0bc50 to your computer and use it in GitHub Desktop.
Delayed Automatic Navigation
@Composable
fun PageA(navController: NavHostController) {
LaunchedEffect(key1 = Unit){
delay(4000)
navController.navigate("page_b")
}
Column(
modifier = Modifier.fillMaxSize(),
horizontalAlignment = Alignment.CenterHorizontally,
verticalArrangement = Arrangement.Center
){
CircularProgressIndicator(
color = Color(0xfff44336)
)
Text(
"Page A",
color = Color(0xfff44336),
fontSize = 24.sp,
fontWeight = FontWeight.Bold
)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment