React-Navigation/drawer 项底部边框
React-Navigation/drawer items bottom border
我是 React native 的新手,我已经在我的应用程序中添加了一个 React 导航抽屉菜单,但是如何为菜单项添加边框颜色?
我已经这样做了
options={{
drawerLabel: 'Page title',
drawerIcon: () => (
<View
style={
{
borderLeftColor: 'red',
borderLeftWidth: 2,
paddingLeft: 5,
}
}>
</View>
),
}}
通过修改抽屉导航器中的 itemStyle 找到的解决方案
<Drawer.Navigator
drawerContentOptions={{
activeTintColor: '#D09900',
itemStyle: { borderRadius:0,marginVertical: 0,borderBottomWidth:0.5,borderBottomColor:'#D09900' },
}}>
我是 React native 的新手,我已经在我的应用程序中添加了一个 React 导航抽屉菜单,但是如何为菜单项添加边框颜色? 我已经这样做了
options={{
drawerLabel: 'Page title',
drawerIcon: () => (
<View
style={
{
borderLeftColor: 'red',
borderLeftWidth: 2,
paddingLeft: 5,
}
}>
</View>
),
}}
通过修改抽屉导航器中的 itemStyle 找到的解决方案
<Drawer.Navigator
drawerContentOptions={{
activeTintColor: '#D09900',
itemStyle: { borderRadius:0,marginVertical: 0,borderBottomWidth:0.5,borderBottomColor:'#D09900' },
}}>