This is your reference when you're wiring up tap, drag, pinch, or rotation gestures in SwiftUI and need to get the state management and composition right. It covers the modern iOS 17+ gestures like MagnifyGesture and RotateGesture that replaced the deprecated versions, shows you how to use @GestureState for transient feedback versus @State for persistence, and explains the three composition operators (simultaneously, sequenced, exclusively) with actual code. The gesture priority modifiers (highPriorityGesture, simultaneousGesture) are spelled out clearly, which matters when you've got nested interactive views fighting over touch events. Useful for both adding new gestures and fixing existing ones that feel broken.
npx skills add https://github.com/dpearson2699/swift-ios-skills --skill swiftui-gestures