Dovydas
06/21/2025, 8:52 PMDovydas
06/21/2025, 8:53 PM@Composable
@Preview
fun App(
onUnhideContent: () -> Unit = {},
//viewModel: AppViewModel = koinViewModel(),
) {
onUnhideContent()
NavHost(
navController = navController,
startDestination = OnboardingGraph.Onboarding,
enterTransition = { NavigationTransitions.sharedXAxisEnter(density) },
exitTransition = { NavigationTransitions.sharedXAxisExit(density) },
popEnterTransition = { NavigationTransitions.sharedXAxisPopEnter(density) },
popExitTransition = { NavigationTransitions.sharedXAxisPopExit(density) },
) {
authGraphDestination(
navController = navController,
onNavigateNext = { }
)
}
setContent {
App(
onUnhideContent = { unhideContent = true }
)
}
Ian Lake
06/21/2025, 9:37 PMwindowBackground
of your activity through them. That is likely your gray color. You'd want to actually set your window background to be the color you want underneath all your screens, rather than using screens with full backgrounds if you want the background to be present underneath all the screensDovydas
06/21/2025, 9:49 PMIan Lake
06/21/2025, 9:50 PMDovydas
06/21/2025, 9:53 PM