On Android when scrolling to 0 offset refresh control starting mounting, and scrolling stops, you can't even scroll again with current touch, but events(onScrollEndDrag) not triggered. If you poll down enough you surely get triggered 'onRefresh' event from 'RefreshControl' where you can at least know that offset is 0, but if you don't poll enough...
Maybe there any workaround, or i'm missing something?
handleScrollEndEvents(e){
console.log(e)
}
render() {
return(
<ListView
ref={(c) => this._list = c}
refreshControl={
<RefreshControl
refreshing={this.state.isRefreshing}
onRefresh={this._onRefresh}
/>
}
onMomentumScrollEnd={this.handleScrollEndEvents}
onScrollEndDrag={this.handleScrollEndEvents}
/>
)
}
On Android when scrolling to 0 offset refresh control starting mounting, and scrolling stops, you can't even scroll again with current touch, but events(onScrollEndDrag) not triggered. If you poll down enough you surely get triggered 'onRefresh' event from 'RefreshControl' where you can at least know that offset is 0, but if you don't poll enough...
Maybe there any workaround, or i'm missing something?