Similar story to #7 - the code attempts to access e.offsetX here:
https://github.com/pmndrs/react-three-fiber/blob/v8.16.8/packages/fiber/src/core/events.ts#L175-L176
which does not exist on react-native events.
This in turn causes the calculateDistance calculation to always return NaN and if (delta <= 2) to never match.
Similar story to #7 - the code attempts to access
e.offsetXhere:https://github.com/pmndrs/react-three-fiber/blob/v8.16.8/packages/fiber/src/core/events.ts#L175-L176
which does not exist on react-native events.
This in turn causes the
calculateDistancecalculation to always returnNaNandif (delta <= 2)to never match.