Post

Replies

Boosts

Views

Activity

Reply to Best way to show a sidebar in iPad SwiftUI document app?
Did you try hiding the navigation bars on both the primary and secondary split views? @main struct TheApp: App {     var body: some Scene {         DocumentGroup(newDocument: Document()) { file in             NavigationView {                 Navigator(document: file.$document) .navigationBarHidden(true)                 Content(document: file.$document) .navigationBarHidden(true)             }         }     } }
Jun ’20