61 lines
1.8 KiB
TypeScript
61 lines
1.8 KiB
TypeScript
import { Tabs } from 'expo-router';
|
|
import React from 'react';
|
|
import { Platform } from 'react-native';
|
|
|
|
import { HapticTab } from '@/components/haptic-tab';
|
|
import { IconSymbol } from '@/components/ui/icon-symbol';
|
|
import { Colors } from '@/constants/theme';
|
|
import { useColorScheme } from '@/hooks/use-color-scheme';
|
|
|
|
export default function TabLayout() {
|
|
const colorScheme = useColorScheme();
|
|
|
|
return (
|
|
<Tabs
|
|
screenOptions={{
|
|
tabBarActiveTintColor: Colors[colorScheme ?? 'light'].tint,
|
|
tabBarInactiveTintColor: Colors[colorScheme ?? 'light'].tabIconDefault,
|
|
headerShown: false,
|
|
tabBarButton: HapticTab,
|
|
tabBarStyle: Platform.select({
|
|
default: {
|
|
backgroundColor: Colors[colorScheme ?? 'light'].background,
|
|
borderTopColor: Colors[colorScheme ?? 'light'].border,
|
|
borderTopWidth: 1,
|
|
elevation: 0,
|
|
paddingTop: 8,
|
|
},
|
|
}),
|
|
}}>
|
|
<Tabs.Screen
|
|
name="index"
|
|
options={{
|
|
title: 'Home',
|
|
tabBarIcon: ({ color }) => <IconSymbol size={28} name="house.fill" color={color} />,
|
|
}}
|
|
/>
|
|
<Tabs.Screen
|
|
name="alerts"
|
|
options={{
|
|
title: 'Alerts',
|
|
tabBarIcon: ({ color }) => <IconSymbol size={28} name="bell.fill" color={color} />,
|
|
}}
|
|
/>
|
|
<Tabs.Screen
|
|
name="clips"
|
|
options={{
|
|
title: 'Clips',
|
|
tabBarIcon: ({ color }) => <IconSymbol size={28} name="film.fill" color={color} />,
|
|
}}
|
|
/>
|
|
<Tabs.Screen
|
|
name="settings"
|
|
options={{
|
|
title: 'Settings',
|
|
tabBarIcon: ({ color }) => <IconSymbol size={28} name="gearshape.fill" color={color} />,
|
|
}}
|
|
/>
|
|
</Tabs>
|
|
);
|
|
}
|