When using component from UIKit it is visible abov...
# compose-ios
p
When using component from UIKit it is visible above TopBar.(Dosen’t happen with compose only code)In below screenshot am using UIImageView to render network images. Do we have any workaround for that?
đź‘Ť 1
d
Yes: • You can use Compose in fullscreen with
.ignoresSafeArea(.all)
For example, like here: https://github.com/JetBrains/compose-multiplatform/blob/master/examples/imageviewer/iosApp/iosApp/ContentView.swift#L30 • You can use it with SwiftUI TopBar like here: https://github.com/JetBrains/compose-multiplatform/blob/master/examples/chat/iosApp/iosApp/iosApp.swift#L13