wix中的TopTabs标题反应本机导航(V2)没有显示吗?

时间:2019-06-13 16:51:12

标签: android ios react-native react-native-navigation

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" }
                    }
                  }
                }
              ]
            }
          }
        ]
      }
    }
  });

0 个答案:

没有答案