我可以使用
来更改bottomTab图标的位置iconInsets
像这样
{
stack: {
children: [
{
component: {
name: NOTIFICATIONS,
passProps: {
...props,
},
},
},
],
options: {
bottomTab: {
icon: NOTIFICATIONS_ICON,
iconColor: 'rgb(165, 165, 165)',
selectedIconColor: '#f57474',
iconInsets: {
top: 0,
left: 0,
bottom: hasNotch ? -25 : -10,
right: 0,
},
},
},
},
},
但是通知徽章的位置改变了,并且图标和徽章之间有一个空白,如下图所示:
我已经查看了react-native-navigation库,但找不到任何可以改变徽章位置的道具。
如果任何人都可以分享此问题的解决方案,那将非常有帮助