I have a .map() returning a bunch of Views on the screen I would like to know if the user drags their finger over the View.
items.map((item)=>{
return(
<View style={{left:item.x,top:item.y, width: item.width, height: item.height}}>
<Text>{item.description}</Text>
</View>
)
})
When the user drags their finger over each view should call a function with the items description.
I've looked for different libraries but can't find anything close to relevant