TouchableWithoutFeedback#pressRetentionOffset

pressRetentionOffset {top: number, left: number, bottom: number, right: number} When the scroll view is disabled, this defines how far your touch may move off of the button, before deactivating the button. Once deactivated, try moving it back and you'll see that the button is once again reactivated! Move it back and forth several times while the scroll view is disabled. Ensure you pass in a constant to reduce memory allocations.

TouchableWithoutFeedback#onPressOut

onPressOut function

TouchableWithoutFeedback#onPressIn

onPressIn function

TouchableWithoutFeedback#onPress

onPress function Called when the touch is released, but not if cancelled (e.g. by a scroll that steals the responder lock).

TouchableWithoutFeedback#onLongPress

onLongPress function

TouchableWithoutFeedback#onLayout

onLayout function Invoked on mount and layout changes with {nativeEvent: {layout: {x, y, width, height}}}

TouchableWithoutFeedback#hitSlop

hitSlop {top: number, left: number, bottom: number, right: number} This defines how far your touch can start away from the button. This is added to pressRetentionOffset when moving off of the button. NOTE The touch area never extends past the parent view bounds and the Z-index of sibling views always takes precedence if a touch hits two overlapping views.

TouchableWithoutFeedback#disabled

disabled bool If true, disable all interactions for this component.

TouchableWithoutFeedback#delayPressOut

delayPressOut number Delay in ms, from the release of the touch, before onPressOut is called.

TouchableWithoutFeedback#delayPressIn

delayPressIn number Delay in ms, from the start of the touch, before onPressIn is called.