import { Platform } from 'react-native'; import { useColor } from '@/hooks/useColor'; import { isLiquidGlassAvailable } from 'expo-glass-effect'; import MaterialIcons from '@expo/vector-icons/Feather'; import { Badge, Icon, Label, NativeTabs, VectorIcon, } from 'expo-router/unstable-native-tabs'; export default function TabsLayout() { const red = useColor('red'); const primary = useColor('primary'); const foreground = useColor('foreground'); return ( {Platform.select({ ios: , android: ( } /> ), })} {Platform.select({ ios: , android: ( } /> ), })} 1 {Platform.select({ ios: , android: ( } /> ), })} ); }