diff --git a/releases/next/docs/touchablewithoutfeedback.html b/releases/next/docs/touchablewithoutfeedback.html index 3a3081c2257..736e6d10393 100644 --- a/releases/next/docs/touchablewithoutfeedback.html +++ b/releases/next/docs/touchablewithoutfeedback.html @@ -1,6 +1,11 @@
TouchableWithoutFeedback # | Edit on GitHub |
Do not use unless you have a very good reason. All the elements that respond to press should have a visual feedback when touched. This is -one of the primary reason a "web" app doesn't feel "native".
NOTE: TouchableWithoutFeedback supports only one child
If you wish to have several child components, wrap them in a View.
Delay in ms, from onPressIn, before onLongPress is called.
Delay in ms, from the start of the touch, before onPressIn is called.
Delay in ms, from the release of the touch, before onPressOut is called.
Invoked on mount and layout changes with
{nativeEvent: {layout: {x, y, width, height}}}
Called when the touch is released, but not if cancelled (e.g. by a scroll +one of the primary reason a "web" app doesn't feel "native".
NOTE: TouchableWithoutFeedback supports only one child
If you wish to have several child components, wrap them in a View.
Delay in ms, from onPressIn, before onLongPress is called.
Delay in ms, from the start of the touch, before onPressIn is called.
Delay in ms, from the release of the touch, before onPressOut is called.
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.
Invoked on mount and layout changes with
{nativeEvent: {layout: {x, y, width, height}}}
Called when the touch is released, but not if cancelled (e.g. by a scroll that steals the responder lock).
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 diff --git a/releases/next/docs/view.html b/releases/next/docs/view.html index 3ba87f4a75f..f0fded37c5d 100644 --- a/releases/next/docs/view.html +++ b/releases/next/docs/view.html @@ -12,7 +12,15 @@ wraps two colored boxes and custom component in a row with padding.
Overrides the text that's read by the screen reader when the user interacts with the element. By default, the label is constructed by traversing all the children and accumulating all the Text nodes separated by space.
When true, indicates that the view is an accessibility element. By default, -all the touchable elements are accessible.
When accessible is true, the system will try to invoke this function
+all the touchable elements are accessible.
This defines how far a touch event can start away from the view.
+Typical interface guidelines recommend touch targets that are at least
+30 - 40 points/density-independent pixels. If a Touchable view has a
+height of 20 the touchable height can be extended to 40 with
+hitSlop={{top: 10, bottom: 10, left: 0, right: 0}}
+ 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.
When accessible is true, the system will try to invoke this function
when the user performs accessibility tap gesture.
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.
When accessible is true, the system will invoke this function when the
diff --git a/releases/next/showcase.html b/releases/next/showcase.html
index 7b4e2e75e6b..816dfcdcb4d 100644
--- a/releases/next/showcase.html
+++ b/releases/next/showcase.html
@@ -1,4 +1,4 @@
-