如何从本机屏幕中删除顶部选项卡?
How to remove top tab from the screen in react native?
我正在使用 wix react 本机导航,我可以使用
导航到屏幕
Navigation.events().registerAppLaunchedListener(() => {
Navigation.setRoot({
root: {
stack: {
children: [{
component: {
name: 'myproject.AuthScreen',
passProps: {
text: 'stack with one child'
}
}
}],
options: {
topBar: {
title: {
text: 'Welcome screen'
}
}
}
}
}
})
});
但是如何从该屏幕中删除顶部标签
在选项中试试这个:
topBar: {
visible: false,
drawBehind: true,
animate: false,
},
在要隐藏或显示的组件中可以添加这个静态函数
export default class Screen extends Component {
static get options() {
return {
topBar: {
title: {
text: 'Screen',
},
visible: false,
drawBehind: true,
animate: false,
},
};
}
}
我正在使用 wix react 本机导航,我可以使用
导航到屏幕Navigation.events().registerAppLaunchedListener(() => {
Navigation.setRoot({
root: {
stack: {
children: [{
component: {
name: 'myproject.AuthScreen',
passProps: {
text: 'stack with one child'
}
}
}],
options: {
topBar: {
title: {
text: 'Welcome screen'
}
}
}
}
}
})
});
但是如何从该屏幕中删除顶部标签
在选项中试试这个:
topBar: {
visible: false,
drawBehind: true,
animate: false,
},
在要隐藏或显示的组件中可以添加这个静态函数
export default class Screen extends Component {
static get options() {
return {
topBar: {
title: {
text: 'Screen',
},
visible: false,
drawBehind: true,
animate: false,
},
};
}
}