How to use haptic feedback touch in SwiftUI?

Sunil Targe
Jul 20, 2021

--

I think this is the simplest way to implement haptic feedback sound in SwiftUI

Button(action: {
// most preferred.
UIImpactFeedbackGenerator(style: .soft).impactOccurred()
//other styles -> .light, .medium, .heavy, .rigid
}) {
Text("My button title")
}

You can even integrate this on the gesture or anywhere on the SwiftUI action.

Sign up to discover human stories that deepen your understanding of the world.

Free

Distraction-free reading. No ads.

Organize your knowledge with lists and highlights.

Tell your story. Find your audience.

Membership

Read member-only stories

Support writers you read most

Earn money for your writing

Listen to audio narrations

Read offline with the Medium app

--

--

Sunil Targe
Sunil Targe

No responses yet

Write a response