62 lines
1.6 KiB
TypeScript
62 lines
1.6 KiB
TypeScript
import { Tabs } from 'expo-router';
|
|
import React from 'react';
|
|
|
|
import { TabBarIcon } from '@/components/navigation/TabBarIcon';
|
|
import { Colors } from '@/constants/Colors';
|
|
import { useColorScheme } from '@/hooks/useColorScheme';
|
|
|
|
export default function TabLayout() {
|
|
const colorScheme = useColorScheme();
|
|
|
|
console.log('is layout rendering?');
|
|
|
|
return (
|
|
<Tabs
|
|
screenOptions={{
|
|
tabBarActiveTintColor: Colors[colorScheme ?? 'light'].tint,
|
|
tabBarShowLabel: false,
|
|
headerShown: false,
|
|
tabBarStyle: {
|
|
height: 70,
|
|
elevation: 0,
|
|
}
|
|
}}>
|
|
<Tabs.Screen
|
|
name="index"
|
|
options={{
|
|
title: 'Home',
|
|
tabBarIcon: ({ color, focused }) => (
|
|
<TabBarIcon name={focused ? 'calendar' : 'calendar-outline'} color={color} />
|
|
),
|
|
}}
|
|
/>
|
|
<Tabs.Screen
|
|
name="map"
|
|
options={{
|
|
title: 'Map',
|
|
tabBarIcon: ({ color, focused }) => (
|
|
<TabBarIcon name={focused ? 'map' : 'map-outline'} color={color} />
|
|
),
|
|
}}
|
|
/>
|
|
<Tabs.Screen
|
|
name="explore"
|
|
options={{
|
|
title: 'Explore',
|
|
tabBarIcon: ({ color, focused }) => (
|
|
<TabBarIcon name={focused ? 'trash' : 'trash-outline'} color={color} />
|
|
),
|
|
}}
|
|
/>
|
|
<Tabs.Screen
|
|
name="settings"
|
|
options={{
|
|
title: 'Settings',
|
|
tabBarIcon: ({ color, focused }) => (
|
|
<TabBarIcon name={focused ? 'settings' : 'settings-outline'} color={color} />
|
|
),
|
|
}}
|
|
/>
|
|
</Tabs>
|
|
);
|
|
}
|