How do I draw behind the status bar like this?
# compose
r
How do I draw behind the status bar like this?
n
@jush is there a way to set this insets just for a specific composable? In my application I have a lot of screens (I’m using Jetpack Navigation) and I just want the full screen in one of them. What I get so far is: put the whole application full screen and set
.systemBarsPadding()
modifier in all screens… Is this the only way? cc: @cb
j
Sorry I don't know.
😞 1
👍 1
c
What I get so far is: put the whole application full screen and set
systemBarsPadding()
modifier in all screens… Is this the only way?
Yep. Note, this is the intention for 'going edge to edge' anyway. Also, I wouldn't really call this going 'full screen', but 'system bar aware'
👍🏽 1
n
Thanks @cb! 👍