From 15043ba33fd2464de6836ffc6345850fdd92574e Mon Sep 17 00:00:00 2001 From: dingchengjie Date: Thu, 5 Mar 2026 16:12:45 +0800 Subject: [PATCH] =?UTF-8?q?docs:=20[Issues:=20#IF5VSR]=20=E6=9B=B4?= =?UTF-8?q?=E6=96=B0react-native-largelist=E7=BB=84=E4=BB=B6=E7=9A=84tapTo?= =?UTF-8?q?HideKeyboard=E6=8E=A5=E5=8F=A3=E5=B1=9E=E6=80=A7=E8=AF=B4?= =?UTF-8?q?=E6=98=8E?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- en/react-native-largelist.md | 2 +- zh-cn/react-native-largelist.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/en/react-native-largelist.md b/en/react-native-largelist.md index f43793700..b04d5980f 100644 --- a/en/react-native-largelist.md +++ b/en/react-native-largelist.md @@ -165,7 +165,7 @@ This document is verified based on the following versions: | initialContentOffset | Initial offset, only valid on first initialization, later changes are invalid (x direction is supported) | {x:number, y:number} | no | Android/iOS | yes | | showsVerticalScrollIndicator | Show vertical scroll indicator | boolean | no | Android/iOS | no | | showsHorizontalScrollIndicator | Show horizontal scroll indicator (only useful when content view exceeds LargeList viewport) | boolean | no | Android/iOS | no | -| tapToHideKeyboard | Whether to hide the keyboard when tapping LargeList | boolean | no | Android/iOS | yes(rely on react-native-spring-scrollview 2.x version,deprecated from react-native-spring-scrollview 3.x version ) | +| tapToHideKeyboard | Whether to hide the keyboard when tapping LargeList | boolean | no | Android/iOS | no(deprecated from react-native-spring-scrollview 3.x version ) | | data | Data source for the list | { items: any[] }[] | no | Android/iOS | yes | | heightForSection | Function that returns the height of each section header | (section: number) => number | no | Android/iOS | yes | | renderSection | Render function for each section header | `(section: number) => React.ReactElement ` | no | Android/iOS | yes | diff --git a/zh-cn/react-native-largelist.md b/zh-cn/react-native-largelist.md index d4b6dc22e..ccfda09d5 100644 --- a/zh-cn/react-native-largelist.md +++ b/zh-cn/react-native-largelist.md @@ -163,7 +163,7 @@ ohpm install | initialContentOffset | 初始化偏移,仅第一次初始化有效,后期更改无效(已支持x方向) | {x:number, y:number} | no | Android/iOS | yes | | showsVerticalScrollIndicator | 显示垂直滚动指示器 | boolean | no | Android/iOS | no | | showsHorizontalScrollIndicator | 显示水平滚动指示器(内容视图超出LargeList视口才有用) | boolean | no | Android/iOS | no | -| tapToHideKeyboard | 点击LargeList是否收起键盘 | boolean | no | Android/iOS | yes(需要依赖2.x基线的react-native-spring-scrollview,3.x基线的react-native-spring-scrollview该属性已废弃) | +| tapToHideKeyboard | 点击LargeList是否收起键盘 | boolean | no | Android/iOS | no(3.x基线的react-native-spring-scrollview该属性已废弃) | | data | 列表的数据源 | { items: any[] }[] | no | Android/iOS | yes | | heightForSection | 返回列表每一组组头高度的函数 | (section: number) => number | no | Android/iOS | yes | | renderSection | 每一组组头的render函数 | `(section: number) => React.ReactElement ` | no | Android/iOS | yes | -- Gitee