gpt4 book ai didi

ios - FlatList onRefresh 不适用于 SafeAreaView

转载 作者:行者123 更新时间:2023-11-29 05:50:44 31 4
gpt4 key购买 nike

拉动刷新会导致无休止的旋转,并且在 iPhone 上测试应用程序时不会调用 onRefresh。在带有主页按钮的 Android 和 iOS 设备上,一切都按预期运行。

ReactNative版本:0.58.3

当 flex:1 从容器样式中删除时,一切正常,但它破坏了屏幕的 Markdown 。使用 ScrollView 会导致同样的问题。

render() {
return (
<View style={styles.container}>
<SafeAreaView style={styles.safeAreaView}>
<Toolbar
leftElement="menu"
centerElement="sometext"
style={{ container: { backgroundColor: '#ffa500' } }}
searchable={{
autoFocus: true,
placeholder: 'Search',
onChangeText: text => this.searchFilterFunction(text),
onSearchCloseRequested: () => this.resetSearchFilter()
}}
onLeftElementPress={() => this.props.navigation.openDrawer()}
/>
</SafeAreaView>

<FlatList
data={this.state.data}
keyExtractor={this.keyExtractor}
ItemSeparatorComponent={this.renderSeparator}
contentContainerStyle={{paddingLeft: '3%', paddingBottom: '4%'}}
refreshing={this.state.refreshing}
onRefresh={this.getData}
renderItem={({item}) =>
<PartnerCardComponent
partnerName={item.name}
discount={item.discount}
url={item.url}
image={item.image}
phone={item.telephones}
address={item.locations}
description={item.description}
navigation={this.props.navigation}
/>
}
/>
<SafeAreaView style={styles.bottomArea}/>
</View>
);
}
}

const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: 'white'
},
safeAreaView: {
backgroundColor: '#ffa500',
shadowColor: 'gray',
shadowOffset: {height: 1, width: 0},
shadowOpacity: 0.5,
},
bottomArea: {
backgroundColor: 'white',
shadowColor: 'white',
shadowOffset: {height: -5, width: 0},
shadowOpacity: 5,
}
});

预期:更新 FlatList 数据

接收:无限旋转,onRefresh不调用。

最佳答案

我也遇到过类似的情况(尽管我的 FlatList 在 SafeAreaView 内,而不是被它们包围)。在我看来,对我有用的是使用模糊描述的 RefreshControl 组件,而不是直接设置 onRefresh 和刷新属性。在没有看到其余代码(并从react-native导入RefreshControl)的情况下,我只是将其放入:

...
<FlatList
data={this.state.data}
keyExtractor={this.keyExtractor}
ItemSeparatorComponent={this.renderSeparator}
contentContainerStyle={{paddingLeft: '3%', paddingBottom: '4%'}}

refreshControl={<RefreshControl
refreshing={this.state.refreshing}
onRefresh={this.getData}
/>}

renderItem={({item}) =>
<PartnerCardComponent
partnerName={item.name}
discount={item.discount}
url={item.url}
image={item.image}
phone={item.telephones}
address={item.locations}
description={item.description}
navigation={this.props.navigation}
/>
}
/>
...

关于ios - FlatList onRefresh 不适用于 SafeAreaView,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55695354/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com