Is it possible to let the apple watch vibrate with no sounds?
watchos vibrate in swiftUI
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.