krzysztof
03/26/2025, 9:03 PMBox(
modifier = Modifier
.background(Color.Cyan)
.fillMaxSize()
.windowInsetsPadding(WindowInsets.safeDrawing)
.fillMaxSize(),
)
on Android it works as expected (draws cyan behind status and nav bar) but iOS does not budge.
On iOS having ComposeView().ignoreSafeArea()
does nothing it seems?
CMP 1.7.3Dovydas
03/26/2025, 9:05 PMComposeView().ignoresSafeArea(.container)
krzysztof
03/26/2025, 9:09 PMignoreSafeArea
expands content to all regionsDovydas
03/26/2025, 9:13 PMkrzysztof
03/26/2025, 9:15 PMkrzysztof
03/26/2025, 9:15 PMkrzysztof
03/26/2025, 9:16 PM