react-native-draggable
react-native-draggable copied to clipboard
Draggable Item
Is it possible to stop the drag event from within the `onDrag` event? ``` { if (event.nativeEvent.pageX > 300) { // None of these will work: event.stopPropagation(); event.preventDefault(); event.stopImmediatePropagation(); event.nativeEvent.stopPropagation();...
import React, { useEffect, useState } from 'react'; import { Alert, Dimensions, StyleSheet, Text, TouchableOpacity, ViewStyle } from 'react-native'; import Draggable from 'react-native-draggable'; import color from '../../constants/color'; import { regular...