正如代码中给出的那样,我已经尝试过,我想知道抽屉中显示的“主页”是否会偶然变为白色?
<Drawer.Section style={{backgroundColor:"green"}}>
<DrawerItem
icon={({ color, size }) => (
<Icon name="home-outline" color={"white"} size={size}/>
)}
label="Home"
color="white" //as this is not working
onPress={() => {
props.navigation.navigate("Home");
}}
/>
</Drawer.Section>
Run Code Online (Sandbox Code Playgroud)