From aa6b4276d2f04acbd91519e778efb2dacb15ab99 Mon Sep 17 00:00:00 2001 From: wangyingjun01 Date: Wed, 12 Nov 2025 14:32:44 +0800 Subject: [PATCH] =?UTF-8?q?docs:=20[Issue:#ID686O]=E6=9B=B4=E6=96=B0recycl?= =?UTF-8?q?erListView=E5=BA=93=E4=B8=AD=E8=8B=B1=E6=96=87=E6=96=87?= =?UTF-8?q?=E6=A1=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: wangyingjun01 --- en/recyclerlistview.md | 2 +- zh-cn/recyclerlistview.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/en/recyclerlistview.md b/en/recyclerlistview.md index b02833dc..660dfc9b 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 7b8b87fb..a2fc67cc 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 | -- Gitee