import { Tabs } from 'expo-router'; import React from 'react'; import { Ionicons } from '@expo/vector-icons'; import { HapticTab } from '@/components/haptic-tab'; import { AppColors } from '@/constants/theme'; import { useColorScheme } from '@/hooks/use-color-scheme'; export default function TabLayout() { const colorScheme = useColorScheme(); const isDark = colorScheme === 'dark'; return ( ( ), }} /> ( ), }} /> ( ), }} /> {/* Hide explore tab */} ); }