小编Ank*_*raj的帖子

无法更改 <DrawerItem> react-native 中标签的颜色

在此处输入图片说明

正如代码中给出的那样,我已经尝试过,我想知道抽屉中显示的“主页”是否会偶然变为白色?

<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)

reactjs react-native

3
推荐指数
1
解决办法
1049
查看次数

标签 统计

react-native ×1

reactjs ×1