You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, I would like to register a multi-finger tap (but also pan and long press). My use case is a kiosk application that is tapped by people with several different finger patterns.
I tried using this:
export class HammerConfig extends HammerGestureConfig {
override overrides = {
// I will only use the swap gesture so
// I will deactivate the others to avoid overlaps
pinch: { enable: false },
rotate: { enable: false },
tap: { pointers: 0, posThreshold: 400, interval: 20 },
press: { pointers: 0 },
pan: { pointers: 0 },
};
}
It works with pan, but not with other gestures, any suggestion on how to catch all events on multi-finger gestures?
The text was updated successfully, but these errors were encountered:
Hi, I would like to register a multi-finger tap (but also pan and long press). My use case is a kiosk application that is tapped by people with several different finger patterns.
I tried using this:
It works with pan, but not with other gestures, any suggestion on how to catch all events on multi-finger gestures?
The text was updated successfully, but these errors were encountered: