morethanadiagnosis-hub/mobile/app/(tabs)/_layout.tsx
2025-11-19 09:42:02 -08:00

80 lines
1.9 KiB
TypeScript

import { Tabs } from 'expo-router';
import { Ionicons } from '@expo/vector-icons';
export default function TabLayout() {
return (
<Tabs
screenOptions={{
headerShown: true,
tabBarActiveTintColor: '#0066cc',
tabBarInactiveTintColor: '#999',
headerStyle: {
backgroundColor: '#ffffff',
borderBottomColor: '#e0e0e0',
borderBottomWidth: 1,
},
headerTitleStyle: {
fontSize: 18,
fontWeight: '600',
color: '#000',
},
}}
>
<Tabs.Screen
name="index"
options={{
title: 'Home',
tabBarLabel: 'Home',
headerTitle: 'MoreThanADiagnosis',
tabBarIcon: ({ color, size }) => (
<Ionicons name="home" size={size} color={color} />
),
}}
/>
<Tabs.Screen
name="resources"
options={{
title: 'Resources',
tabBarLabel: 'Resources',
tabBarIcon: ({ color, size }) => (
<Ionicons name="book" size={size} color={color} />
),
}}
/>
<Tabs.Screen
name="community"
options={{
title: 'Community',
tabBarLabel: 'Community',
tabBarIcon: ({ color, size }) => (
<Ionicons name="people" size={size} color={color} />
),
}}
/>
<Tabs.Screen
name="podcasts"
options={{
title: 'Podcasts',
tabBarLabel: 'Podcasts',
tabBarIcon: ({ color, size }) => (
<Ionicons name="mic" size={size} color={color} />
),
}}
/>
<Tabs.Screen
name="profile"
options={{
title: 'Profile',
tabBarLabel: 'Profile',
tabBarIcon: ({ color, size }) => (
<Ionicons name="person" size={size} color={color} />
),
}}
/>
</Tabs>
);
}