-
Notifications
You must be signed in to change notification settings - Fork 13.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: add haptic feedback to Toggle in Safari on iOS 18+ #29942
Comments
This sounds really interesting! You can find a similar PR for config extension here. |
Hi @DwieDima, thanks for the suggestion 🙇 Added configurability to my PR 😄 |
Thank you for the feature request! Are there any examples in the native iOS that provide haptic feedback? This will help determine if we would proceed with this request since we want to align with native. |
@thetaPC you can find these in the settings app for every toggle (e.g notifications) |
Thank you for providing a use case! I was able to verify that this is a possibility with native iOS and toggles. I'll be adding the |
Just came across this discussion - I've been working with the checkbox switch approach for haptic feedback in Safari on iOS as well. Created a small library that implements this technique: https://github.com/posaune0423/use-haptic. There's also a demo site if you want to try it out(code sandbox): https://kjwzkv.csb.app |
Thanks for the feature request! This has been resolved via PR #29945 and will be available in an upcoming minor release of Ionic. |
Prerequisites
Describe the Feature Request
Safari since iOS 18 supports haptic feedback on checkbox elements via a non-standard
switch
attribute. We could use it to provide haptic feedback when switching Toggle in non-hybrid environments. This could be a workaround for lack of support for Vibration API in Safari.Describe the Use Case
Adding haptic feedback to Toggle component in non-hybrid environments would improve native feel of web and PWA apps built with Ionic.
Describe Preferred Solution
To trigger haptic feedback programatically we need an
<input type=checkbox switch>
element with an associated<label>
element. With this setup, when we programatically trigger click() on the label, safari will emit the haptic feedback.Describe Alternatives
Keep current implementation and wait for Safari to implement Vibration API (if it ever does).
Related Code
Codepen provided in WebKit release notes, demonstrating haptic feedback in checkbox of type switch: https://codepen.io/jensimmons/pen/GReLKWg
Additional Information
No response
The text was updated successfully, but these errors were encountered: