我使用react-native FlatList组件来列出项目 分页没有按预期发生,因为在达到页面结束时onEndReached必须触发文档,目前我尝试更改onEndReachedThreshold的值(尝试0.1,1.0,0.5,0.01),同时设置刷新标志。 注意:我使用的是ReactNative 0.48.4 所以我的代码
<Container style={{ marginTop: 22 }}>
<Content
style={{ flex: 1 }}
contentContainerStyle={{ flexGrow: 1 }}
>
<View style={{ flex: 1 }}>
<FlatList
initialNumToRender={10}
refreshing={this.state.refreshing}
onEndReachedThreshold={0.5}
onEndReached={({ distanceFromEnd }) => {
console.log('on end reached ', distanceFromEnd);
}}
data={this.props.messages}
renderItem={this.notificationContent.bind(this)}
keyExtractor={(item) => item._id}
/>
</View>
</Content>
</Container>
我已经尝试了所有可能的解决方案作为github issues
的回复这里有任何帮助吗?
答案 0 :(得分:5)
您在项目中使用NativeBase,而Flatlist在内容上是冲突的。要解决此问题,您需要删除内容
答案 1 :(得分:1)
我发生了同样的事情,您需要添加contentContainerStyle = {flex:1}
<Content contentContainerStyle={{ flex: 1 }}>
答案 2 :(得分:0)
将extraData prop传递给FlatList extraData = {this.state}
检查docs以获取更多信息。
答案 3 :(得分:-3)
onEndReachedThreshold={0.5} remove this line