Day 3: The earthly vibrations caught my off guard. π
In the Fourth post of #30DaysOfSwift series, You'll learn how to implement the haptic feedback on press of a Button or any certain action.
Here's the code for you to implement Haptic Feedback with 3 variations.
For those who want to jump into it right away,
struct HomeView: View { let lightFeedback = UIImpactFeedbackGenerator(style: .light) // Change style let mediumFeedback = UIImpactFeedbackGenerator(style: .medium) let heavyFeedback = UIImpactFeedbackGenerator(style: .heavy) var body: some View { Button("Light Feedback") { lightFeedback.impactOccurred() // Use this line for haptic feedback } Button("Medium Feedback") { mediumFeedback.impactOccurred() } Button("Heavy Feedback") { heavyFeedback.impactOccurred() } } }
Which one hits the right spot? Let me know :)
Happy Coding!
Top comments (0)