swiftui-patterns
Installation
SKILL.md
SwiftUI Patterns
Build modern iOS apps with SwiftUI's declarative syntax, state management, and reactive patterns.
Core Patterns
Basic View
struct ContentView: View {
@State private var count = 0
var body: some View {
VStack {
Text("Count: \(count)")
.font(.largeTitle)