TopTabs React导航导航WIX [V2]

时间:2018-12-16 15:31:09

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

我正在使用 react-native-navigation ,并且我想要实现一个 topTabs 屏幕,其中包含另外两个选项卡[tab1和tab2],但似乎没有是文档中的一种方式,所以我用这段代码替换了现有的 bottomTabs ,在屏幕之间进行滑动,但底部没有按钮或图标。

  Navigation.setRoot({
        root: {
          sideMenu: {
            left: {
              component: {
                name: 'app.Drawer',
              },
            },
            center: {
              topTabs: {
                children: [
                  {
                    component: {
                      name: 'Tab1',
                      options: {
                        topTab: {
                          title: 'Tab 1',
                          icon: require('../assets/icons/tab1.png'),
                        },
                      },
                    },
                  },
                  {
                    component: {
                      name: 'Tab2',
                      options: {
                        topTab: {
                          title: 'Tab 2',
                          icon: require('../assets/icons/tab2.png'),
                        },
                      },
                    },
                  },
                ],
              },
            },
          },
        },
      });

0 个答案:

没有答案