HapticFeedbackKit
HapticFeedbackKit copied to clipboard
SwiftUI library for managing haptic feedback
This is just a quick proof of concept: - @AppStorage is already observable so no need to write observable class boilerplate code. - Using dynamic property wrapper one can easily...
Could you please provide minimum support to iOS 16?
```swift import SwiftUI protocol HapticFeedbackServiceable { func perform(_ feedback: SensoryFeedback) } ``` I'm imaging we would create a service to handle this and be able to inject it into views/viewModels.