Recent Comments
No comments to show.-
Categories
-
Archives
-
-
Tag Archives: SwiftUI
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