diff --git a/en/react-native-pull.md b/en/react-native-pull.md index 6acfa3ec0d4d9a58ef756573594c018771b55331..3567bf3fd23d568a2b239e31f731b76e1e0c758e 100644 --- a/en/react-native-pull.md +++ b/en/react-native-pull.md @@ -474,7 +474,7 @@ Check the release version information in the release address of the third-party | `onPushing` | Called when the component is in the **pushing** state. This function contains the **gesturePosition** parameter, which is a **{x, y}** object in JSON format. When the component is pulled from top to bottom, the value of **gesturePosition.y** is greater than 0. When the object is pushed from bottom to top, the value of **gesturePosition.y** is less than 0. | function | no | android,ios | yes | | `topIndicatorRender` | Renders the top indicator component. This function contains four parameters: **ispulling**, **ispullok**, **ispullrelease** and **gesturePosition**. You can use **gesturePosition** to define the animation header. | function | no | android,ios | yes | | `topIndicatorHeight` | Specifies the height of the top indicator component. This property is necessary when **topIndicatorRender** is defined. | number | no | android,ios | yes | -| `isPullEnd` | Indicates whether the pull-down ends. If the value is **true**, the top indicator component is hidden. This parameter is optional. | boolean | no | android,ios | yes | +| `isPullEnd` | Indicates whether the pull-down ends. If the value is **true**, the top indicator component is hidden. This parameter is optional. | boolean | no | android,ios | no | | `onRefresh` | Called when the refresh starts. | function | no | android,ios | yes | | `refreshing` | Indicates whether the component is being refreshed. | function | no | android,ios | yes | @@ -482,6 +482,8 @@ Check the release version information in the release address of the third-party ## Others +- The isPullEnd property does not take effect; [issue#28](https://github.com/greatbsky/react-native-pull/issues/28) + ## License This project is licensed under [The MIT License (MIT)](https://github.com/greatbsky/react-native-pull/blob/master/LICENSE). \ No newline at end of file diff --git a/zh-cn/react-native-pull.md b/zh-cn/react-native-pull.md index e944a3df2bdfbad698f9c96cbff5671811b2225d..f38bc7b03b72e99c7118e4a3084439b7eb3c242f 100644 --- a/zh-cn/react-native-pull.md +++ b/zh-cn/react-native-pull.md @@ -473,7 +473,7 @@ export default PullListDemo; | `onPushing` | 当从下往上推时执行的方法,接受一个参数:`gesturePosition`。gesturePosition是json格式{x, y}对象,当从上往下拉时gesturePosition.y > 0,当从下往上推时gesturePosition.y < 0。 | function | no | android,ios | yes | | `topIndicatorRender` | 顶部刷新指示组件的渲染方法, 接受4个参数: `ispulling`, `ispullok`, `ispullrelease`,`gesturePosition`,你可以使用`gesturePosition`定义动画头部。 | function | no | android,ios | yes | | `topIndicatorHeight` | 顶部刷新指示组件的高度, 若定义了topIndicatorRender则同时需要此属性 | number | no | android,ios | yes | -| `isPullEnd` | 是否已经下拉结束,若为true则隐藏顶部刷新指示组件,非必须 | boolean | no | android,ios | yes | +| `isPullEnd` | 是否已经下拉结束,若为true则隐藏顶部刷新指示组件,非必须 | boolean | no | android,ios | no | | `onRefresh` | 开始刷新时调用的方法 | function | no | android,ios | yes | | `refreshing` | 指示是否正在刷新 | function | no | android,ios | yes | @@ -481,6 +481,8 @@ export default PullListDemo; ## 其他 +- isPullEnd 属性不生效; [issue#28](https://github.com/greatbsky/react-native-pull/issues/28) + ## 开源协议 本项目基于 [The MIT License (MIT)](https://github.com/greatbsky/react-native-pull/blob/master/LICENSE) ,请自由地享受和参与开源。