直到拉下列表视图很长时间才触发refreshControl

时间:2017-12-24 00:10:45

标签: react-native

当你稍微下拉列表视图时,你会看到指标。 但是,它并没有真正触发onRefresh回调。 当用户在指标显示时下拉列表视图时,我怎么能真正触发onRefresh回调呢?

    _onRefresh() {
        this.setState({isRefreshing: true}, this.props.refreshWords())
    }


            refreshControl={
                <RefreshControl
                    refreshing={this.state.isRefreshing}
                    onRefresh={this._onRefresh.bind(this)}
                    title="Refreshing words"/>
            }

0 个答案:

没有答案