This commit is contained in:
Fredrik Burmester
2024-10-10 23:11:40 +02:00
parent 380172c5ac
commit 2ed29e5a18
2 changed files with 3 additions and 3 deletions

View File

@@ -34,13 +34,13 @@ export default function TabLayout() {
}, []);
return (
<NativeTabs sidebarAdaptable>
<NativeTabs sidebarAdaptable ignoresTopSafeArea>
<NativeTabs.Screen redirect name="index" />
<NativeTabs.Screen
name="(home)"
options={{
title: "Home",
tabBarIcon: () => ({ sfSymbol: "house" }),
tabBarIcon: ({ color, focused, size }) => ({ sfSymbol: "house" }),
}}
/>
<NativeTabs.Screen