Anyone know how to draw the content of the compose...
# multiplatform
d
Anyone know how to draw the content of the compose view on iOS edge to edge using a KMP solution? I’m looking for something similar to what Android can do with
enableEdgeToEdge
. Also I’m not super familiar with iOS so not sure if that’s a no no for iOS apps
c
I think that you need to add
ignoresSafeArea(.all)
d
Thank I’ll try that out
That works like a charm, thank you! I had
.keyboard
before
🙌 1