gpt4 book ai didi

reactjs - TabNavigator 涵盖内容

转载 作者:行者123 更新时间:2023-12-03 21:19:24 25 4
gpt4 key购买 nike

我有这个组件,它包含一个由 TabNavigator 覆盖在底部的列表。任何想法如何解决它?只有一种造型方式吗?

render() {
return (
<Container style={{ paddingBottom: 5 }}>
<Header
backgroundColor={'#1E6EC7'}
placement="left"
leftComponent={{ icon: 'menu', color: '#fff' }}
centerComponent={{ text: 'Programul Zilei', style: { color: '#fff', fontWeight: 'bold', fontSize: 22 } }}
rightComponent={<Icon name="ios-add" style={{ color: 'white' }} onPress={() => {
const {students}=this.props;
this.props.navigation.navigate('AddClass', {students})}} />}
/>
<List>
<FlatList
data={this.props.classes}
keyExtractor={(item, index) => `${index}`}
extraData={this.state}
renderItem={({ item }) => {
<ListItem
leftIcon={<View style={{ flexDirection: 'row' }}><Icon1 name="times" size={24} style={{ paddingRight: 10, color: 'red' }} onPress={() => {
this.setState({ currentStudent: wantedEmployee })
this.setState({ currentClass: item })
this.props.classDeleteModalShowUp();
}} />
}
/>
</List>
</Container>

最佳答案

您可以 hide the tab navigator对于特定的屏幕设置tabBarVisiblenavigationOptions 中为假.
但我认为问题是由于标题,您可以尝试使用 react navigation header bar .
否则,您可以向容器添加 paddingBottom与标题高度相同

关于reactjs - TabNavigator 涵盖内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52447043/

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