我一直在尝试制作一个合适的 RNN V2 树,但这对我来说没有意义......给出这个例子:
root: {
bottomTabs: {
children: [
{
component: {
name: 'Main',
options: {
bottomTab: {
text: 'Main',
},
},
},
},
{
component: {
name: 'Secondary',
options: {
bottomTab: {
text: 'Secondary',
},
},
},
},
],
},
},
}
因此,假设我想告诉导航器对活动的底部选项卡使用红色。如果我想实现这一点,那么我需要将 selectedTextColor 添加到每个组件
...component: {
...
options: {
...
selectedTextColor: 'red'
}
}
与bottomTabs可见,隐藏等相同...如何在父级中设置一次,并让子级继承这些选项?