diff --git a/app/(app)/_layout.tsx b/app/(app)/_layout.tsx index fb10855..7b78568 100644 --- a/app/(app)/_layout.tsx +++ b/app/(app)/_layout.tsx @@ -29,7 +29,10 @@ export default function AppLayout() { /> , unmountOnBlur: true }} + options={{ title: 'Clients', tabBarIcon: ({ color }) => }} + listeners={({ navigation }: any) => ({ + tabPress: () => { navigation.navigate('clients', { screen: 'index' }); }, + })} /> , unmountOnBlur: true }} + options={{ title: 'Tickets', tabBarIcon: ({ color }) => }} + listeners={({ navigation }: any) => ({ + tabPress: () => { navigation.navigate('tasks', { screen: 'index' }); }, + })} />