I have a scrollview with a grid of images when I long press on an image I’d like to stop propagating the mouse events to the scrollview and just monitor the movements. With the
This would be the simplest answer:
use this on the inner view at the point where you want the propagation to stop
onTouchEnd={(e) => { e.stopPropagation() }}