Mercurial > public > simoleon
view Simoleon/SimoleonApp.swift @ 15:a02f463aa906
Testing three column ipad navigation
author | Dennis Concepción Martín <dennisconcepcionmartin@gmail.com> |
---|---|
date | Thu, 15 Jul 2021 10:58:29 +0100 |
parents | e0c2bda6c51f |
children | aec2e86e5dbd |
line wrap: on
line source
// // SimoleonApp.swift // Simoleon // // Created by Dennis Concepción Martín on 08/07/2021. // import SwiftUI @main struct SimoleonApp: App { let persistenceController = PersistenceController.shared var body: some Scene { WindowGroup { if UIDevice.current.userInterfaceIdiom == .pad { SidebarNavigation() } else { ContentView() .environment(\.managedObjectContext, persistenceController.container.viewContext) } } } }