54 lines
1.5 KiB
TypeScript
54 lines
1.5 KiB
TypeScript
import { Tabs } from "expo-router";
|
|
import { useColorScheme } from "react-native";
|
|
import { useSafeAreaInsets } from "react-native-safe-area-context";
|
|
import { MaterialIcons } from "@expo/vector-icons";
|
|
import { COLORS } from "@/lib/constants";
|
|
|
|
export default function TabLayout() {
|
|
const colorScheme = useColorScheme();
|
|
const isDark = colorScheme === "dark";
|
|
const insets = useSafeAreaInsets();
|
|
|
|
return (
|
|
<Tabs
|
|
screenOptions={{
|
|
headerShown: false,
|
|
tabBarActiveTintColor: COLORS.codex,
|
|
tabBarInactiveTintColor: isDark ? "#52525b" : "#a1a1aa",
|
|
tabBarStyle: {
|
|
backgroundColor: isDark ? "#09090b" : "#ffffff",
|
|
borderTopColor: isDark ? "#27272a" : "#f4f4f5",
|
|
height: 56 + insets.bottom,
|
|
paddingBottom: 8 + insets.bottom,
|
|
paddingTop: 6,
|
|
},
|
|
tabBarLabelStyle: {
|
|
fontSize: 10,
|
|
fontWeight: "600",
|
|
},
|
|
}}
|
|
>
|
|
<Tabs.Screen
|
|
name="index"
|
|
options={{
|
|
title: "Home",
|
|
tabBarIcon: ({ color, size }) => (
|
|
<MaterialIcons name="home" size={size} color={color} />
|
|
),
|
|
}}
|
|
/>
|
|
<Tabs.Screen name="codex" options={{ href: null }} />
|
|
<Tabs.Screen name="claude" options={{ href: null }} />
|
|
<Tabs.Screen
|
|
name="settings"
|
|
options={{
|
|
title: "Settings",
|
|
tabBarIcon: ({ color, size }) => (
|
|
<MaterialIcons name="settings" size={size} color={color} />
|
|
),
|
|
}}
|
|
/>
|
|
</Tabs>
|
|
);
|
|
}
|