SwiftUI library for managing haptic feedback
HapticFeedbackKit
is a SwiftUI library for managing haptic feedback.
The primary purpose of this package is to provide users with the ability to enable or disable haptic feedback within the application.
You can install HapticFeedbackKit
using the Swift Package Manager.
https://github.com/JamesSedlacek/HapticFeedbackKit.git
.hapticFeedback()
instead of .sensoryFeedback()
.import HapticFeedbackKit
import SwiftUI
struct ContentView: View {
@State private var taskIsComplete = false
var body: some View {
Button("Mark Complete") {
taskIsComplete = true
}
.hapticFeedback(.success, trigger: taskIsComplete)
}
}
HapticFeedbackToggle()
in the settings screen in your project.import HapticFeedbackKit
import SwiftUI
struct SettingsView {
var body: some View {
VStack {
HapticFeedbackToggle()
}
}
}