I am using a chart with a trackball and I am interested in haptic every time the trackball passes a point.
I added this callback:
onTrackballPositionChanging: (args) {
HapticFeedback.selectionClick();
},
In the current situation, if we move with the trackball but stay in the same spot for a few seconds (and maybe we move a little up and down with the finger, but at the same point on the X-axis), The haptic is activated several times.
How can this be prevented?