Mercurial > public > geoquiz
view GeoQuiz/GeoQuizApp.swift @ 23:02dcebb8cc4a
fix layout issues
author | Dennis C. M. <dennis@denniscm.com> |
---|---|
date | Thu, 27 Oct 2022 09:17:13 +0200 |
parents | e281791e0494 |
children |
line wrap: on
line source
// // GeoQuizApp.swift // GeoQuiz // // Created by Dennis Concepción Martín on 4/9/22. // import SwiftUI import RevenueCat @main struct GeoQuizApp: App { let persistenceController = PersistenceController.shared init() { Purchases.configure(withAPIKey: "appl_BymTxroeoaWiXAraaFjcPlHlqbf") } var body: some Scene { WindowGroup { ContentView() .environment(\.managedObjectContext, persistenceController.container.viewContext) } } }