import FontAwesome from '@expo/vector-icons/FontAwesome'; import { Tabs } from 'expo-router'; import { useColorScheme, View } from 'react-native'; import Colors from '@/constants/Colors'; import i18n from '@/i18n'; import { CityProvider } from '../../context/CityContext'; /** * You can explore the built-in icon families and icons on the web at https://icons.expo.fyi/ */ function TabBarIcon(props: { name: React.ComponentProps['name']; color: string; }) { return ; } export default function TabLayout() { const colorScheme = 'dark'; // Force dark mode return ( , }} /> , }} /> , }} /> , }} /> ); }