react native导航中的底部选项卡在android中未正确定向?

时间:2019-07-16 06:24:01

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

当我使用2个选项卡时,wix的底部选项卡会反应本机导航(Android)的位置未正确居中。

我希望将标签正确放置在中心位置。

我尝试过的代码。

Navigation.setRoot({
    root: {
      bottomTabs: {
        children: [
          {
            stack: {
              children: [
                {
                  component: {
                    name: "Home",
                    options: {
                      bottomTab: {
                        icon: require("../img/one.png")
                      }
                    }
                  }
                }
              ]
            }
          },
          {
            stack: {
              children: [
                {
                  component: {
                    name: "Search",
                    options: {
                      bottomTab: {
                        icon: require("../img/one.png")
                      }
                    }
                  }
                }
              ]
            }
          }
        ]
      }
    }
  });
};

0 个答案:

没有答案