Second question, how do I get rid of this bottom e...
# multiplatform
g
Second question, how do I get rid of this bottom empty bar? I’m using a standard compose
Scaffold
and it works fine on all platforms besides IOS, is this a bug?
j
Looks like the safe insets for navigation gesture bar. You need to set your app to draw behind it and add padding to accommodate it.
I would ask in #compose-ios as surely someone knows how to do it
You probably also want to draw behind the top status bar, too
g
For the reference I fixed it in xcode with
.ignoreSafeArea(.all, .bottom)
on the
ContentView()
👍 1