How to hide or change navigation bar overlay color in bottom sheets? https://github.com/user-attachments/assets/b651cc70-793d-4d50-8d8c-6e5aee8a555c Im using it in jetpack compose: ```kotlin ModalBottomSheet( onDismissRequest = { sheetOpen.value = false }, contentWindowInsets = { WindowInsets(0,0,0,0) }, containerColor = Color.Blue, ) { Text("text",modifier=Modifier.padding(vertical = 32.dp)) } ``` Edge to edge: ```kotlin enableEdgeToEdge( navigationBarStyle = SystemBarStyle.dark( scrim = Color.Transparent.toArgb() ) ) ```