Given a View in React Native that renders a ScrollView with multiple TouchableHighlight controls, how can touches on a TouchableHighlight be allowed if the user has initiated a scroll ( contents within the ScrollView are in motion )?
Currently, the touch is handled by the ScrollView and is considered a "stop event" wherein the ScrollView stops its scrolling operation. Which is natural since that's a common way in which users stop a scroll in progress. However I'd like to be able to change this behavior and allow and/or detect the touch event while the ScrollView content is in motion.