This commit is contained in:
Bastien COIGNOUX
2026-05-03 20:18:33 +02:00
parent ffc2e6b895
commit bd325fe456
113 changed files with 29532 additions and 220 deletions

48
app/(tabs)/_layout.tsx Normal file
View File

@ -0,0 +1,48 @@
import { Ionicons } from '@expo/vector-icons';
import { Tabs } from 'expo-router';
import { colors } from '../../src/theme/colors';
export default function TabsLayout() {
return (
<Tabs
screenOptions={{
headerStyle: { backgroundColor: colors.bgCard },
headerTintColor: colors.text,
tabBarStyle: {
backgroundColor: colors.bgCard,
borderTopColor: colors.border,
},
tabBarActiveTintColor: colors.accent,
tabBarInactiveTintColor: colors.textMuted,
}}
>
<Tabs.Screen
name="index"
options={{
title: 'Dossiers',
tabBarIcon: ({ color, size }) => (
<Ionicons name="folder-open-outline" size={size} color={color} />
),
}}
/>
<Tabs.Screen
name="investisseurs"
options={{
title: 'Investisseurs',
tabBarIcon: ({ color, size }) => (
<Ionicons name="people-outline" size={size} color={color} />
),
}}
/>
<Tabs.Screen
name="reglages"
options={{
title: 'Réglages',
tabBarIcon: ({ color, size }) => (
<Ionicons name="settings-outline" size={size} color={color} />
),
}}
/>
</Tabs>
);
}