watchos vibrate in swiftUI

Is it possible to let the apple watch vibrate with no sounds?


You usually use the play(_:) method of WKInterfaceDevice to handle the vibrations as well as vibrate. For your case you could use WKInterfaceDevice.current().play(.click) to only vibrate. You can check out WKHapticTypes for when to use which one.

watchos vibrate in swiftUI
 
 
Q