Yun*_*car 2 mobile react-native expo
我正在使用expo自己的路由器结构。在布局中它会自动将页面添加到底部栏,我想删除一些页面。
您可以通过传递 prop 来隐藏视图href: null。请参阅文档https://expo.github.io/router/docs/guides/tabs#hiding-a-tab
export default function AppLayout() {
return (
<Tabs>
<Tabs.Screen
// Name of the route to hide.
name="index"
options={{
// This tab will no longer show up in the tab bar.
href: null,
}}
/>
</Tabs>
);
}
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
1272 次 |
| 最近记录: |