Tag Archives: Swift

Giving Swift a chance

I’ve started learning Swift again. Today, I’ve been playing around with a hello world ContentView. Something like below. struct ContentView: View { @Environment(\.modelContext) private var modelContext @Query private var items: [Item] var body: some View { // stuff } } … Continue reading

Posted in Projects and hobbies | Tagged , , | Leave a comment