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 { Colors } from '../../src/design/tokens'; const ACTIVE = Colors.blue.fg; const INACTIVE = '#555'; const TAB_BG = '#111111'; 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(); return ( {/* Hidden screens */} {/* Visible tabs */} , }} /> , }} /> , }} /> , }} /> ); }