From 9c5e9dacfc2a8afb1a92ca6c1e6b7faa149af965 Mon Sep 17 00:00:00 2001
From: Travis CI
Rate-limited row rendering - By default, only one row is rendered per
event-loop (customizable with the pageSize prop). This breaks up the
work into smaller chunks to reduce the chance of dropping frames while
-rendering rows.
How many rows to render on initial component mount. Use this to make +rendering rows.
How many rows to render on initial component mount. Use this to make it so that the first screen worth of data apears at one time instead of over the course of multiple frames.
(visibleRows, changedRows) => void
Called when the set of visible rows changes. visibleRows maps
{ sectionID: { rowID: true }} for all the visible rows, and
diff --git a/docs/touchablehighlight.html b/docs/touchablehighlight.html
index 01cd015b1cd..fe43edd3adf 100644
--- a/docs/touchablehighlight.html
+++ b/docs/touchablehighlight.html
@@ -12,7 +12,7 @@ backgroundColor of the wrapped view isn't explicitly set to an opaque color
/>
</TouchableHighlight>
);
-},
NOTE: TouchableHighlight supports only one child
If you wish to have several child components, wrap them in a View.
Determines what the opacity of the wrapped view should be when touch is +},
NOTE: TouchableHighlight supports only one child
If you wish to have several child components, wrap them in a View.
Determines what the opacity of the wrapped view should be when touch is active.
Called immediately after the underlay is hidden
Called immediately after the underlay is shown
The color of the underlay that will show through when the touch is active.