adrielcafe / voyager

🛸 A pragmatic navigation library for Jetpack Compose
https://voyager.adriel.cafe
MIT License
2.27k stars 109 forks source link

how can I change BottomSheetNavigator background in Screen? #384

Closed akardas16 closed 1 month ago

akardas16 commented 1 month ago

I can't change BottomSheetNavigator background color in voyager Screen.

mealinux commented 1 month ago

can be just like this

Box(
modifier = Modifier
  .fillMaxSize()
  .background(Color.Black)
){
  your all code in the screen...
}