I am working on a universal-app and want to test it with the iPad-simulator in Xcode beta 5, but it shows me only a white screen. With the iPhone-simulator the app runs.
I have uninstalled Xcode and macOS Catalina completely and reinstalled both, but it doesn't help
import SwiftUI
struct ContentView: View {
var body: some View {
NavigationView {
Text("This is a great app")
}
}
}