import { useTheme } from '@/components/ThemeContext'; import { RefreshProvider } from '@/components/ui/RefreshContext'; import { BottomSheetModalProvider } from '@gorhom/bottom-sheet'; import { Tabs } from 'expo-router'; import { Home, Megaphone, PlusCircle, User } from 'lucide-react-native'; import { useTranslation } from 'react-i18next'; import { Text } from 'react-native'; import { GestureHandlerRootView } from 'react-native-gesture-handler'; export default function TabsLayout() { const { isDark } = useTheme(); const { t } = useTranslation(); return ( ( {t('Bosh sahifa')} ), tabBarIcon: ({ color, size }) => , }} /> ( {t("E'lon joylashtirish")} ), tabBarIcon: ({ color, size }) => , }} /> ( {t("E'lonlar")} ), tabBarIcon: ({ color, size }) => , }} /> ( {t('Profil')} ), tabBarIcon: ({ color, size }) => , }} /> ); }