现在我想拉下一个scrollView并刷新这个组件,所以我遵循了react-native的官方文档中提到的onRefresh和RefreshContorol。
但是,我不知道为什么我的代码不工作,并得到错误.
下面的代码是我的代码。
<View style={styles.container}>
<ScrollView
contentContainerStyle={{ flexDirection: 'row', flexWrap: 'wrap' }}
refreshControl={<RefreshControl refreshing={this.state.refreshing} onRefresh={this.setState({ refreshing: true })} />}
>
{this.renderItemBox()}
</ScrollView>
</View>
3条答案
按热度按时间6rvt4ljy1#
下面是示例代码,您可以在其中找到RefreshController与ScrollView的集成:
dzhpxtsq2#
在我身上奏效了
bwntbbo33#