当我使用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")
}
}
}
}
]
}
}
]
}
}
});
};