diff --git a/releases/next/docs/listview.html b/releases/next/docs/listview.html index 71d591b8c9c..efa47f2dd78 100644 --- a/releases/next/docs/listview.html +++ b/releases/next/docs/listview.html @@ -60,7 +60,7 @@ header.
How early to start rendering rows before they come on screen, in -pixels.
An array of child indices determining which children get docked to the +pixels.
An array of child indices determining which children get docked to the
top of the screen when scrolling. For example, passing
stickyHeaderIndices={[0]} will cause the first child to be fixed to the
top of the scroll view. This property is not supported in conjunction
diff --git a/releases/next/docs/mapview.html b/releases/next/docs/mapview.html
index 97ba3fd6152..9c975b80ab7 100644
--- a/releases/next/docs/mapview.html
+++ b/releases/next/docs/mapview.html
@@ -12,7 +12,7 @@ Default value is true.
Used to style and layout the MapView. See StyleSheet.js and
ViewStylePropTypes.js for more info.
If false the user won't be able to pinch/zoom the map.
-Default value is true.
true.true.Map annotations with title/subtitle.
If true the map will follow the user's location whenever it changes.
+)}] #
Map annotations with title/subtitle.
If true the map will follow the user's location whenever it changes.
Note that this has no effect unless showsUserLocation is enabled.
Default value is true.
Insets for the map's legal label, originally at bottom left of the map.
-See EdgeInsetsPropType.js for more information.
The map type to be displayed.
Maximum size of area that can be displayed.
Minimum size of area that can be displayed.
Map overlays
If false compass won't be displayed on the map.
+See EdgeInsetsPropType.js for more information.
The map type to be displayed.
Maximum size of area that can be displayed.
Minimum size of area that can be displayed.
Map overlays
If false compass won't be displayed on the map.
Default value is true.
If false points of interest won't be displayed on the map.
Default value is true.
Examples # | Edit on GitHub |
Specify a route to start on. A route is an object that the navigator
will use to identify each scene to render. initialRoute must be
a route in the initialRouteStack if both props are provided. The
-initialRoute will default to the last item in the initialRouteStack.
Provide a set of routes to initially mount. Required if no initialRoute
+initialRoute will default to the last item in the initialRouteStack.
Provide a set of routes to initially mount. Required if no initialRoute
is provided. Otherwise, it will default to an array containing only the
initialRoute
Optionally provide a navigation bar that persists across scene transitions
Optionally provide the navigator object from a parent Navigator
Will be called with the new route of each scene after the transition is diff --git a/releases/next/docs/refreshcontrol.html b/releases/next/docs/refreshcontrol.html index d23a07abd59..1cdb1121ab1 100644 --- a/releases/next/docs/refreshcontrol.html +++ b/releases/next/docs/refreshcontrol.html @@ -1,6 +1,38 @@ -
RefreshControl # | Edit on GitHub |
This component is used inside a ScrollView to add pull to refresh +
RefreshControl # | Edit on GitHub |
This component is used inside a ScrollView or ListView to add pull to refresh
functionality. When the ScrollView is at scrollY: 0, swiping down
-triggers an onRefresh event.
Called when the view starts refreshing.
Whether the view should be indicating an active refresh.
The colors (at least one) that will be used to draw the refresh indicator.
Whether the pull to refresh functionality is enabled.
Size of the refresh indicator, see RefreshControl.SIZE.
The title displayed under the refresh indicator.
Examples # | Edit on GitHub |
onRefresh event.Note: refreshing is a controlled prop, this is why it needs to be set to true
+in the onRefresh function otherwise the refresh indicator will stop immediatly.
Called when the view starts refreshing.
Whether the view should be indicating an active refresh.
Whether the pull to refresh functionality is enabled.
Size of the refresh indicator, see RefreshControl.SIZE.
The title displayed under the refresh indicator.
Examples # | Edit on GitHub |
end will align the snap at the right (horizontal) or bottom (vertical)When set, causes the scroll view to stop at multiples of the value of
snapToInterval. This can be used for paginating through children
that have lengths smaller than the scroll view. Used in combination
-with snapToAlignment.
An array of child indices determining which children get docked to the
+with snapToAlignment.
An array of child indices determining which children get docked to the
top of the screen when scrolling. For example, passing
stickyHeaderIndices={[0]} will cause the first child to be fixed to the
top of the scroll view. This property is not supported in conjunction
diff --git a/releases/next/docs/segmentedcontrolios.html b/releases/next/docs/segmentedcontrolios.html
index 31f09b101bc..a6049e53795 100644
--- a/releases/next/docs/segmentedcontrolios.html
+++ b/releases/next/docs/segmentedcontrolios.html
@@ -2,7 +2,7 @@
Default value is true.
If true, then selecting a segment won't persist visually.
The onValueChange callback will still work as expected.
Callback that is called when the user taps a segment; passes the event as an argument
Callback that is called when the user taps a segment; -passes the segment's value as an argument
The index in props.values of the segment to be pre-selected
Accent color of the control.
The labels for the control's segment buttons, in order.
Examples # | Edit on GitHub |
The index in props.values of the segment to be pre-selected
Accent color of the control.
The labels for the control's segment buttons, in order.
Examples # | Edit on GitHub |
Sets possible actions on the toolbar as part of the action menu. These are displayed as icons +}
Sets possible actions on the toolbar as part of the action menu. These are displayed as icons or text on the right side of the widget. If they don't fit they are placed in an 'overflow' menu.
This property takes an array of objects, where each object has the following keys:
title: required, the title of this actionicon: the icon for this action, e.g. require('./some_icon.png')show: when to show this action as an icon or hide it in the overflow menu: always,
ifRoom or nevershowWithText: boolean, whether to show text alongside the icon or notSets the content inset for the toolbar ending edge.
The content inset affects the valid area for Toolbar content other than diff --git a/releases/next/docs/touchablewithoutfeedback.html b/releases/next/docs/touchablewithoutfeedback.html index 1fb59ad61fd..02d59a87931 100644 --- a/releases/next/docs/touchablewithoutfeedback.html +++ b/releases/next/docs/touchablewithoutfeedback.html @@ -1,6 +1,6 @@
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.
If true, disable all interactions for this component.
This defines how far your touch can start away from the button. 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.
If true, disable all interactions for this component.
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
diff --git a/releases/next/docs/transforms.html b/releases/next/docs/transforms.html
index 1c03944ed6f..f7420047259 100644
--- a/releases/next/docs/transforms.html
+++ b/releases/next/docs/transforms.html
@@ -1,4 +1,4 @@
-