There are two ways. One is to add an empty launch storyboard file...
But maybe better, I found out that if you do not want storyboards, you leave the "launch screen file" field in general empty, and modify the plist file (I used a plist from a new SwiftUI project without storyboards... ) you will only need to delete the AppDelegate file and add the @main file as in the SwiftUI projects and it is working.
@main
struct myApp: App {
var body: some Scene {
WindowGroup {
ContentView()
}
}
}
Topic:
UI Frameworks
SubTopic:
SwiftUI
Tags: