Ok it might work

This commit is contained in:
2026-04-25 12:08:14 +02:00
parent 928db54b3e
commit 858ee5e28b
10 changed files with 229 additions and 67 deletions

View File

@@ -1,5 +1,25 @@
import { Tabs } from "expo-router";
import { Ionicons } from "@expo/vector-icons";
export default function TabsLayout() {
return <Tabs />;
}
return (
<Tabs
screenOptions={{
headerShown: false,
}}
>
<Tabs.Screen name="index" options={{
title: "Birthdays",
tabBarIcon: ({ color, size }) => (
<Ionicons name="gift" size={size} color={color} />
),
}} />
<Tabs.Screen name="settings" options={{
title: "Settings",
tabBarIcon: ({ color, size }) => (
<Ionicons name="settings" size={size} color={color} />
),
}} />
</Tabs>
);
}