4

我有一个使用 React Navigation Drawer 的 React Native 项目,使用自定义抽屉组件:

const CustomDrawerContentComponent = (props) => (
    <Container>
        <Header androidStatusBarColor={Colors.BlueDark} title="Title" style={styles.drawerHeader} onPress={() => this.props.navigation.navigate('Home')}>
            <Body style={styles.container}>
                <LogoCircle size={15} />
                <Container style={styles.drawerTextContainer}>
                    <Text style={styles.drawerText}>My App</Text>
                </Container>
            </Body>
        </Header>
        <Content>
            <DrawerItems {...props} />
        </Content>
    </Container>
);

是否可以添加分隔器来制作抽屉物品的部分?我想把我的一半物品放在一个部分,另一半放在另一个部分,用分隔线分开。

我知道可以创建自定义抽屉条目,以便在按下时导航到某些页面,但在这种情况下,我不能使用诸如“activeBackgroundColor”之类的样式。

4

0 回答 0