我正在使用React native navigation V2并创建顶部标签的导航。
Navigation.setRoot({
root: {
stack: {
children: [
{
topTabs: {
children: [
{
component: {
name: "Home",
options: {
topTab: {
title: "Tab 1",
},
},
},
},
{
component: {
name: "Faqs",
options: {
topTab: {
title: "Tab 2",
},
},
},
},
],
},
},
],
},
},
});
如何自定义标签和荧光笔的颜色?在文档中,没有提到topTabs
。在V1
中,topTabs
的文档非常丰富。