From e2e489b17ba4e5cb83a1a7068a6b98f8fd5f3e08 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 e9182367b73..764426e4a6e 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>
);
-},
Determines what the opacity of the wrapped view should be when touch is +},
Determines what the opacity of the wrapped view should be when touch is active.
The color of the underlay that will show through when the touch is active.