将主页设置为不在选项卡中的屏幕。威克斯V2

时间:2018-12-08 23:00:43

标签: javascript reactjs navigation wix-react-native-navigation

我一直在尝试学习反应,并且一直在使用Wix导航。

我希望用户登陆的第一个屏幕是不在底部选项卡选择中的屏幕。

它们将降落在Screen0上,并能够从选项卡导航到Screen1和Screen2。

所以我的问题是,如何将登录屏幕设置为不在底部选项卡中的be屏幕?

Navigation.setRoot({
  root: {
    bottomTabs: {
      children: [
        {
          stack: {
            children: [{
              component: {
                name: "Screen1",
              },
            }],      
            options: {
              bottomTab: {
                text: 'Screen1',
                icon: require('../assets/icons/Screen1.png')
              }
            }
          }
        },
        {
          stack: {
            children: [{
              component: {
                name: "Screen2",
              },
            }],  
            options: {
              bottomTab: {
                text: 'Screen2',
                icon: require('../assets/icons/Screen2.png')
              }
            }
          }
        }
      ]
    }
  }
})

0 个答案:

没有答案