68 lines
1.9 KiB
TypeScript
68 lines
1.9 KiB
TypeScript
import { Tabs } from 'expo-router';
|
|
import React from 'react';
|
|
import { Platform } from 'react-native';
|
|
|
|
import { HapticTab } from '@/components/HapticTab';
|
|
import { IconSymbol } from '@/components/ui/IconSymbol';
|
|
import TabBarBackground from '@/components/ui/TabBarBackground';
|
|
import { Colors } from '@/constants/Colors';
|
|
import { useColorScheme } from '@/hooks/useColorScheme';
|
|
|
|
export default function TabLayout() {
|
|
const colorScheme = useColorScheme();
|
|
|
|
return (
|
|
<Tabs
|
|
screenOptions={{
|
|
tabBarActiveTintColor: Colors[colorScheme ?? 'light'].tint,
|
|
headerShown: false,
|
|
tabBarLabelPosition: 'below-icon',
|
|
tabBarButton: HapticTab,
|
|
tabBarBackground: TabBarBackground,
|
|
tabBarStyle: Platform.select({
|
|
ios: {
|
|
// Use a transparent background on iOS to show the blur effect
|
|
position: 'absolute',
|
|
},
|
|
default: {},
|
|
}),
|
|
}}>
|
|
<Tabs.Screen
|
|
name="index"
|
|
options={{
|
|
title: 'Journey',
|
|
tabBarIcon: ({ color }) => <IconSymbol size={28} name="book" color={color} />,
|
|
}}
|
|
/>
|
|
<Tabs.Screen
|
|
name="calendar"
|
|
options={{
|
|
title: 'Calendar',
|
|
tabBarIcon: ({ color }) => <IconSymbol size={28} name="calendar-today" color={color} />,
|
|
}}
|
|
/>
|
|
<Tabs.Screen
|
|
name="media"
|
|
options={{
|
|
title: 'Media',
|
|
tabBarIcon: ({ color }) => <IconSymbol size={28} name="photo" color={color} />,
|
|
}}
|
|
/>
|
|
<Tabs.Screen
|
|
name="atlas"
|
|
options={{
|
|
title: 'Atlas',
|
|
tabBarIcon: ({ color }) => <IconSymbol size={28} name="map" color={color} />,
|
|
}}
|
|
/>
|
|
<Tabs.Screen
|
|
name="today"
|
|
options={{
|
|
title: 'Today',
|
|
tabBarIcon: ({ color }) => <IconSymbol size={28} name="inbox" color={color} />,
|
|
}}
|
|
/>
|
|
</Tabs>
|
|
);
|
|
}
|