14 lines
686 B
XML
14 lines
686 B
XML
import { Tabs } from 'expo-router';
|
|
|
|
export default function TabLayout() {
|
|
return (
|
|
<Tabs screenOptions={{ headerShown: false }}>
|
|
<Tabs.Screen name="index" options={{ title: 'Home', tabBarAccessibilityLabel: 'Home tab' }} />
|
|
<Tabs.Screen name="search" options={{ title: 'Search', tabBarAccessibilityLabel: 'Search tab' }} />
|
|
<Tabs.Screen name="capture" options={{ title: 'Capture', tabBarAccessibilityLabel: 'Capture tab' }} />
|
|
<Tabs.Screen name="inbox" options={{ title: 'Inbox', tabBarAccessibilityLabel: 'Inbox tab' }} />
|
|
<Tabs.Screen name="settings" options={{ title: 'Settings', tabBarAccessibilityLabel: 'Settings tab' }} />
|
|
</Tabs>
|
|
);
|
|
}
|