import { Tabs } from 'expo-router';
import { Platform, View } from 'react-native';
import { SymbolView } from 'expo-symbols';
import { Text } from 'react-native';
import { useSafeAreaInsets } from 'react-native-safe-area-context';
import { GlobalStatusBar } from '../../src/components/device/GlobalStatusBar';
import { useTheme } from '../../src/design/tokens';
function TabIcon({ ios, emoji, color }: { ios: string; emoji: string; color: string | any }) {
if (Platform.OS === 'ios') {
return ;
}
return {emoji};
}
export default function TabLayout() {
const insets = useSafeAreaInsets();
const theme = useTheme();
return (
{/* Hidden screens */}
{/* Visible tabs */}
,
}}
/>
,
}}
/>
,
}}
/>
,
}}
/>
);
}