bryansills
@Composable fun BasicNav() { var isLoggedIn by remember { mutableStateOf(false) } NavHost(startDestination = "Profile") { composable("Profile") { Profile(isLoggedIn) { isLoggedIn = !isLoggedIn } } composable("Dashboard") { Dashboard() } if (isLoggedIn) { composable("Scrollable") { Scrollable() } } } }
Profile()
Button
Ian Lake
A modern programming language that makes developers happier.