d5b0f9c833
- Onboarding flow (welcome -> Codex setup -> Claude setup -> done) with dark-themed screens and step indicators; completion stored in SecureStore - Smart root redirect checks onboarding state on launch - Dashboard tab shows both services at a glance via ServiceStatusCard; useFocusEffect + reload() keeps it fresh when credentials change in tabs - Settings tab manages credentials and exposes re-run setup wizard - Polished Codex and Claude detail screens with service headers and empty states - 4-tab layout (Home, Codex, Claude, Settings) with dark-mode tab bar - Both hooks gain reload() for cross-tab credential refresh Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
67 lines
1.7 KiB
TypeScript
67 lines
1.7 KiB
TypeScript
import { Tabs } from "expo-router";
|
|
import { useColorScheme } from "react-native";
|
|
import { MaterialIcons } from "@expo/vector-icons";
|
|
|
|
export default function TabLayout() {
|
|
const colorScheme = useColorScheme();
|
|
const isDark = colorScheme === "dark";
|
|
|
|
return (
|
|
<Tabs
|
|
screenOptions={{
|
|
headerShown: false,
|
|
tabBarActiveTintColor: "#10a37f",
|
|
tabBarInactiveTintColor: isDark ? "#52525b" : "#a1a1aa",
|
|
tabBarStyle: {
|
|
backgroundColor: isDark ? "#09090b" : "#ffffff",
|
|
borderTopColor: isDark ? "#27272a" : "#f4f4f5",
|
|
height: 56,
|
|
paddingBottom: 8,
|
|
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={{
|
|
title: "Codex",
|
|
tabBarIcon: ({ color, size }) => (
|
|
<MaterialIcons name="auto-awesome" size={size} color={color} />
|
|
),
|
|
}}
|
|
/>
|
|
<Tabs.Screen
|
|
name="claude"
|
|
options={{
|
|
title: "Claude",
|
|
tabBarIcon: ({ color, size }) => (
|
|
<MaterialIcons name="psychology" size={size} color={color} />
|
|
),
|
|
}}
|
|
/>
|
|
<Tabs.Screen
|
|
name="settings"
|
|
options={{
|
|
title: "Settings",
|
|
tabBarIcon: ({ color, size }) => (
|
|
<MaterialIcons name="settings" size={size} color={color} />
|
|
),
|
|
}}
|
|
/>
|
|
</Tabs>
|
|
);
|
|
}
|