diff --git a/docs/listview.html b/docs/listview.html index 71630687cef..424d00b02ed 100644 --- a/docs/listview.html +++ b/docs/listview.html @@ -36,7 +36,11 @@ over the course of multiple frames.
Called when all rows have been rendered and the list has been scrolled to within onEndReachedThreshold of the bottom. The native scroll -event is provided.
Threshold in pixels for onEndReached.
Number of rows to render per event loop.
A performance optimization for improving scroll perf of +event is provided.
Threshold in pixels (virtual, not physical) for calling onEndReached.
Number of rows to render per event loop. Note: if your 'rows' are actually +cells, i.e. they don't span the full width of your view (as in the +ListViewGridLayoutExample), you should set the pageSize to be a multiple +of the number of cells per row, otherwise you're likely to see gaps at +the edge of the ListView as new pages are loaded.
A performance optimization for improving scroll perf of large lists, used in conjunction with overflow: 'hidden' on the row containers. This is enabled by default.
() => renderable
The header and footer are always rendered (if these props are provided) on every render pass. If they are expensive to re-render, wrap them