diff --git a/en/recyclerlistview.md b/en/recyclerlistview.md index b02833dcd76f403a3d43ce128dd88f4db8272afe..660dfc9b1191977eda20c22e63c759e82e1d8b0c 100644 --- a/en/recyclerlistview.md +++ b/en/recyclerlistview.md @@ -205,7 +205,7 @@ This document is verified based on the following versions: | disableRecycling | Turns off recycling | boolean| No | iOS Android | Yes | | forceNonDeterministicRendering | Default is false;
if enabled dimensions
provided in layout provider
will not be strictly enforced.
Use this if item dimensions
cannot be accurately determined | boolean | No | iOS Android | Yes | | extendedState | In some cases the data passed at row
level may not contain all the info that
the item depends upon,you can keep
all other info outside and pass it down
via this prop. Changing this object
willcause everything to re-render. Make sureyou don't change it often to ensure
performance. Re-renders are heavy. | object | No | iOS Android | Yes | -| itemAnimator | Enables animating RecyclerListView
item cells (shift, add, remove, etc) | ItemAnimator | No | iOS Android | Yes | +| itemAnimator | Enables animating RecyclerListView
item cells (shift, add, remove, etc) | ItemAnimator | No | iOS Android | No | | style | To pass down style to inner ScrollView | object | No | iOS Android | Yes | | scrollViewProps | For all props that need to be proxied
to inner/external scrollview. Put them
in an object and they'll be spread and passed down. | object | No | iOS Android | Yes | | layoutSize | Will prevent the initial empty render
required to compute the size of the
listview and use these dimensions to
render list items in the first render
itself. This is useful for cases such
as server side rendering. The prop canChangeSize has to be set to true
if the size can be changed after
rendering. Note that this is not the scroll view size and is used solely for layouting. | Dimension | No | iOS Android | Yes | diff --git a/zh-cn/recyclerlistview.md b/zh-cn/recyclerlistview.md index 7b8b87fb170b9f35c42228f6467fdb64b4590973..a2fc67cc069b65e426f68bb1a2df3c84d22a952d 100644 --- a/zh-cn/recyclerlistview.md +++ b/zh-cn/recyclerlistview.md @@ -203,7 +203,7 @@ const styles = { | disableRecycling | Turns off recycling | boolean| No | iOS Android | Yes | | forceNonDeterministicRendering | Default is false;
if enabled dimensions
provided in layout provider
will not be strictly enforced.
Use this if item dimensions
cannot be accurately determined | boolean | No | iOS Android | Yes | | extendedState | In some cases the data passed at row
level may not contain all the info that
the item depends upon,you can keep
all other info outside and pass it down
via this prop. Changing this object
willcause everything to re-render. Make sureyou don't change it often to ensure
performance. Re-renders are heavy. | object | No | iOS Android | Yes | -| itemAnimator | Enables animating RecyclerListView
item cells (shift, add, remove, etc) | ItemAnimator | No | iOS Android | Yes | +| itemAnimator | Enables animating RecyclerListView
item cells (shift, add, remove, etc) | ItemAnimator | No | iOS Android | No | | style | To pass down style to inner ScrollView | object | No | iOS Android | Yes | | scrollViewProps | For all props that need to be proxied
to inner/external scrollview. Put them
in an object and they'll be spread and passed down. | object | No | iOS Android | Yes | | layoutSize | Will prevent the initial empty render
required to compute the size of the
listview and use these dimensions to
render list items in the first render
itself. This is useful for cases such
as server side rendering. The prop canChangeSize has to be set to true
if the size can be changed after
rendering. Note that this is not the scroll view size and is used solely for layouting. | Dimension | No | iOS Android | Yes |