Skip to content

Instantly share code, notes, and snippets.

@alperbayram
Created December 14, 2023 20:48
Show Gist options
  • Save alperbayram/566ba03b0015bc5735622b5aa7271764 to your computer and use it in GitHub Desktop.
Save alperbayram/566ba03b0015bc5735622b5aa7271764 to your computer and use it in GitHub Desktop.
import { Tabs } from "expo-router";
export default function Layout() {
return (
<Tabs>
<Tabs.Screen
name="settings"
options={{
title: "settings",
headerTitle: "Settings",
tabBarLabel: "settings",
}}
/>
<Tabs.Screen
name="profile"
options={{
title: "profile",
headerTitle: "Profile",
tabBarLabel: "profile",
}}
/>
</Tabs>
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment