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;
这适用于拉下来,但这不是我需要的。