import { Tabs } from 'expo-router'; import { Icon } from '../../components/Icon'; export default function AppLayout() { return ( }} /> , unmountOnBlur: true }} listeners={({ navigation }: any) => ({ tabPress: (e) => { e.preventDefault(); navigation.reset({ index: 0, routes: [{ name: 'clients' }] }); }, })} /> }} /> , unmountOnBlur: true }} listeners={({ navigation }: any) => ({ tabPress: (e) => { e.preventDefault(); navigation.reset({ index: 0, routes: [{ name: 'tasks' }] }); }, })} /> }} /> {/* Hidden — accessed programmatically */} ); }