diff --git a/docs/view.html b/docs/view.html index 34d071cd507..17f0911ed1f 100644 --- a/docs/view.html +++ b/docs/view.html @@ -16,9 +16,9 @@ all the touchable elements are accessible.

onLayout function #

Invoked on mount and layout changes with

{nativeEvent: { layout: {x, y, width, height}}}.

This event is fired immediately once the layout has been calculated, but the new layout may not yet be reflected on the screen at the time the event is received, especially if a layout animation is in progress.

onMagicTap function #

When accessible is true, the system will invoke this function when the -user performs the magic tap gesture.

onMoveShouldSetResponder function #

For most touch interactions, you'll simply want to wrap your component in +user performs the magic tap gesture.

onMoveShouldSetResponder function #

onMoveShouldSetResponderCapture function #

onResponderGrant function #

For most touch interactions, you'll simply want to wrap your component in TouchableHighlight or TouchableOpacity. Check out Touchable.js, -ScrollResponder.js and ResponderEventPlugin.js for more discussion.

onResponderGrant function #

onResponderMove function #

onResponderReject function #

onResponderRelease function #

onResponderTerminate function #

onResponderTerminationRequest function #

onStartShouldSetResponder function #

onStartShouldSetResponderCapture function #

pointerEvents enum('box-none', 'none', 'box-only', 'auto') #

In the absence of auto property, none is much like CSS's none +ScrollResponder.js and ResponderEventPlugin.js for more discussion.

onResponderMove function #

onResponderReject function #

onResponderRelease function #

onResponderTerminate function #

onResponderTerminationRequest function #

onStartShouldSetResponder function #

onStartShouldSetResponderCapture function #

pointerEvents enum('box-none', 'none', 'box-only', 'auto') #

In the absence of auto property, none is much like CSS's none value. box-none is as if you had applied the CSS class:

.box-none { pointer-events: none; }