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}
   )}