gpt4 book ai didi

react-native - 无论我做什么,Drawer Navigator 都无法将背景设置为透明?

转载 作者:行者123 更新时间:2023-12-02 15:05:25 29 4
gpt4 key购买 nike

我花了超过 si 小时试图将 DrawerNavigator 的背景更改为透明,但没有成功。当我写当我在主要组件中更改它时它起作用了

const MainTabBarDrawer = DrawerNavigator({
Home:{
screen:MainTabNavigator,
},

},{
drawerWidth: 200,
drawerPosition: 'right',
// contentComponent: props => <Text style={{color:'white'}} >text
</Text>,
drawerBackgroundColor: 'yellow',
//backgroundColor:'transparent',
// style: {
// //backgroundColor: 'transparent',
// flex: 1
// },
// contentOptions: {
// style: {
// backgroundColor: 'transparent',
// flex: 1
// }


},
{
style: {
backgroundColor: 'transparent',
flex:1
}
}
)


class App extends Component{

render()
{
return(<MainTabBarDrawer style={{backgroundColor: 'transparent'}}/>)
//return(<Login/>)
}

}

虽然上述方法可行,但我的布局非常复杂,我不希望抽屉出现在我的所有 View 中。那么有没有人知道我是否可以直接更改 DrawerNavigator 的背景而不将其渲染为组件?

最佳答案

在 React Navigation 5 中,这将是:

<Drawer.Navigator
initialRouteName={...}
drawerContent={...}
drawerStyle={{backgroundColor: 'transparent'}}
>

关于react-native - 无论我做什么,Drawer Navigator 都无法将背景设置为透明?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47051746/

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