私は適切な 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 の表示、非表示などと同じです...親で一度設定して、これらのオプションを子に継承させるにはどうすればよいですか?