0

如何使用重点特定选项卡启动TabBasedApp 。默认情况下,它会打开第一个选项卡。但是当我startTabBasedApp时我想有条件地关注标签

4

2 回答 2

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
    }
})
于 2018-11-20T06:37:28.257 回答
0
tabsStyle: { 
    initialTabIndex: 1, // optional, the default selected bottom tab. 
  }
于 2018-06-11T06:50:15.193 回答