我在我的反应本机应用程序中使用抽屉导航器,我想知道您是否可以更改抽屉屏幕中存在的项目的样式而不制作自定义抽屉?类似于为 Drawer.Screen 提供自定义视图样式,所以它不像在文本之前添加图标那么基本
就像添加一些道具到
<Drawer.Screen>
您可以将这些道具传递给 Drawer.Screen 进行个性化设置。
例如:
<Draw.Screen
name={screens.PROFILE}
component={Profile}
options={{
headerTitleStyle: {fontFamily: 'Gugi-Regular'},
drawerLabel: navLabels.PROFILE,
drawerIcon: () => (
<View style={styles.drawIconStyles}>
<Icon name={icons.PERSON_ICON} size={25} tint={'#9E9E9E'} />
</View>
),
drawerItemStyle: {backgroundColor: 'red'},
}}
/>