import { Tabs } from 'expo-router'; import { Platform } from 'react-native'; import { SymbolView } from 'expo-symbols'; const ACTIVE = '#4a9eff'; const INACTIVE = '#555'; const BG = '#111111'; // SymbolView tintColor is typed as string but Tabs passes ColorValue — cast to avoid TS error function TabIcon({ name, color }: { name: string; color: any }) { return ; } export default function TabLayout() { return ( ( ), }} /> ( ), }} /> ( ), }} /> ( ), }} /> ); }