Christian Würthenr
12/23/2024, 8:56 AMModalBottomSheet. When the sheet opens the status bar uses dark icons but the background is black so they become invisible. How can I change them to be light again? In the "normal" android ModalBottomSheet you can use ModalBottomSheetProperties.isAppearanceLightStatusBars but this is missing from multiplatform. I also can't use the normal enableEdgeToEdge because this is for the Activity's window, not the bottomsheet's window (I think that's a new window like a dialog?)Alex Styl
12/23/2024, 1:23 PMChristian Würthenr
12/23/2024, 2:55 PMChristian Würthenr
12/23/2024, 2:55 PMErnestas
04/13/2026, 7:22 AMErnestas
04/13/2026, 2:42 PMcontentColor for the bottom sheet, it applies the correct color for the status bars internally
ModalBottomSheet(
<...>
contentColor = AppTheme.colors.onSurface,
)Christian Würthenr
04/14/2026, 7:27 AM