如何使用专注的特定标签 startTabBasedApp 。 默认情况下会打开第一个选项卡但是当我 startTabBasedApp
时,我想要有条件的焦点选项卡答案 0 :(得分:0)
tabsStyle: {
initialTabIndex: 1, // optional, the default selected bottom tab.
}
答案 1 :(得分:0)
这是一个例子:
Navigation.startTabBasedApp({
tabs: [
{
screen: "screen1",
icon: require("../sharedAssets/image.png"),
label: "label1",
},
{
screen: "screen2"
icon: require("../sharedAssets/image2.png"),
label: "label2",
}
],
tabsStyle: {
initialTabIndex: 1, // optional, the default selected bottom tab. Default: 0
}
})