1

Does anyone know how can I decrease the rotating velocity of arrow which is below. I'm using panResponder and have some simple maths to rotate the arrow image.

The rotation is too sensitive, its is working fine for me but some how I'm not able to decrease the velocity

Code Link: https://snack.expo.dev/bLVo169CM

Video: enter image description here

Thanks in advance ✨

Yash Patel
  • 31
  • 3

1 Answers1

0

Not sure but changing the divisor maybe ? Like so :

          let x0 = x.current + 100 / 4;
          let y0 = y.current + 100 / 4;
JSharles
  • 565
  • 1
  • 5
  • 16