React Native RefreshControl拉起来

时间:2016-06-17 05:18:43

标签: react-native

RefreshComponent通过在下拉时显示加载器来工作。 The documentation州:

  

当ScrollView处于scrollY:0时,向下滑动会触发onRefresh事件。

有没有办法通过拉起来触发onRefresh事件?当我到达ListView的末尾时,我希望能够通过拉起来触发onRefresh事件。

目前,这就是我所拥有的:



<ListView
  dataSource={this.state.dataSource}
  renderRow={this.renderRow.bind(this)}
  style={styles.listView}
  refreshControl={
    <RefreshControl
      refreshing={this.state.refreshing}
      onRefresh={this.fetchData.bind(this)}
    />
  }
/>
&#13;
&#13;
&#13;

这适用于拉下来,但这不是我需要的。

0 个答案:

没有答案