From ac0190910b08f71d93f507244348d4b6a2751ec6 Mon Sep 17 00:00:00 2001 From: Website Deployment Script Date: Fri, 15 Jun 2018 18:42:16 +0000 Subject: [PATCH] Deploy website Deploy website version based on 4b1809c69de23055e9598374c2b1761509413cfc --- docs/next/flatlist.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/next/flatlist.html b/docs/next/flatlist.html index 3cadc8fa0e7..3d4f895ba63 100644 --- a/docs/next/flatlist.html +++ b/docs/next/flatlist.html @@ -254,7 +254,7 @@ class MultiSelectList extends React.PureComponent {

getItemLayout

(data, index) => {length: number, offset: number, index: number}
 
-

getItemLayout is an optional optimization that let us skip measurement of dynamic content if you know the height of items a priori. getItemLayout is the most efficient, and is easy to use if you have fixed height items, for example:

+

getItemLayout is an optional optimization that let us skip the measurement of dynamic content if you know the height of items ahead of time. getItemLayout is both efficient and easy to use if you have fixed height items, for example:

  getItemLayout={(data, index) => (
     {length: ITEM_HEIGHT, offset: ITEM_HEIGHT * index, index}
   )}