Mercurial > public > simoleon
view Simoleon/ContentView.swift @ 175:424a42dd2183
add app icon
author | Dennis Concepcion Martin <dennisconcepcionmartin@gmail.com> |
---|---|
date | Tue, 26 Oct 2021 13:12:53 +0200 |
parents | ad8c6567539d |
children | a1443bd115d9 |
line wrap: on
line source
// // ContentView.swift // Simoleon // // Created by Dennis Concepción Martín on 26/10/21. // import SwiftUI import CoreData struct ContentView: View { var body: some View { Text("Hello world") } } struct ContentView_Previews: PreviewProvider { static var previews: some View { ContentView().environment(\.managedObjectContext, PersistenceController.preview.container.viewContext) } }