如何删除我不想出现在 expo router 底部栏上的页面

Yun*_*car 2 mobile react-native expo

我正在使用expo自己的路由器结构。在布局中它会自动将页面添加到底部栏,我想删除一些页面。

Ric*_*iso 5

您可以通过传递 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)