react本机导航中的Toptabs标题现在正在显示,但是向左滑动和向右滑动导航仍在工作。 问题是如何显示“ Toptabs”标题?
我尝试过的代码。
Navigation.setRoot({
root: {
stack: {
children: [
{
topTabs: {
visible: true,
children: [
{
component: {
name: "Home",
options: {
topTab: {
visible: true,
title: "Tab 1"
}
}
}
},
{
component: {
name: "Test",
options: {
topTab: { visible: true, title: "Tab 2" }
}
}
}
]
}
}
]
}
}
});