Does anyone know if there any plans to support persistentSystemOverlays
in iOS?
persistentSystemOverlays
is a view modifier that should allow to remove the home indicator in iOS 16.
Example in native Swift 4:
struct ContentView: View {
var body: some View {
Color.red
.ignoresSafeArea(.all)
.persistentSystemOverlays(.hidden)
}
}
Thank you!