RefreshControl在FlatList里没有生效
来源:3-3 高性能列表组件FlatList、VirtualizedList精讲-3
Leonard_
2018-06-23
render() {
return (
<View style={styles.container}>
<FlatList
data={this.state.dataArray}
renderItem={(data)=>this._renderItem(data)}
// refreshing={this.state.isLoading}
// onRefresh={()=>{
// this.loadData()
// }}
RefreshControl={
<RefreshControl
title={'Loading'}
colors={['red']}
tintColor={'orange'}
titleColor={'red'}
// titleTextColor={'green'}
refreshing={this.state.isLoading}
onRefresh={()=>{
this.loadData()
}}
/>
}
/>
</View>
);
}
}
1回答
-
Leonard_
提问者
2018-06-23
写错了,应该是小写开头
032020-03-07
相似问题
回答 1