From c02cda60a11afdae4a63099890694d5aa40dee28 Mon Sep 17 00:00:00 2001 From: Travis CI Date: Wed, 10 Feb 2016 16:48:53 +0000 Subject: [PATCH] update website --- docs/listview.html | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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.

onEndReached function #

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.

onEndReachedThreshold number #

Threshold in pixels for onEndReached.

pageSize number #

Number of rows to render per event loop.

removeClippedSubviews bool #

A performance optimization for improving scroll perf of +event is provided.

onEndReachedThreshold number #

Threshold in pixels (virtual, not physical) for calling onEndReached.

pageSize number #

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.

removeClippedSubviews bool #

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.

renderFooter function #

() => 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