I've not used it personally....would be interested if anyone else has.
Just out of curiosity, have you tried adding this in your application config, and removing the items you don't need such as doubleTap, edgeSwipe etc? I've read that the tap delay is due to the listener for doubletap etc:
Code:
Ext.application({
eventPublishers: {
touchGesture: {
recognizers: {
doubleTap : null,
// don't disable this one unless you don't want your list to scroll! drag : null,
edgeSwipe : null,
longPress : null,
pinch : null,
rotate : null,
swipe : null
}
}
}
},
// …
});// JavaScript Document
I think I noticed a difference in my app...
https://www.sencha.com/forum/archive...t-282102.html?
Cheers
:-)