watchos-patterns
SKILL.md
watchOS Platform Patterns
Digital Crown Input
The Digital Crown is the primary input for value adjustment on Apple Watch.
// Basic rotation binding
@State private var crownValue: Double = 0
ScrollView {
content
}
.digitalCrownRotation($crownValue)
// Bounded rotation with haptics
@State private var volume: Double = 50