import { Tabs } from "expo-router"; import React from "react"; import { useTranslation } from "react-i18next"; import { Platform } from "react-native"; import { HapticTab } from "@/components/haptic-tab"; import { IconSymbol } from "@/components/ui/icon-symbol"; import TabBarBackground from "@/components/ui/tab-bar-background"; import { Colors } from "@/constants/theme"; import { useTheme } from "@/context/ThemeContext"; export default function TabLayout() { const { theme } = useTheme(); const { t } = useTranslation(); return ( ( ), }} /> ( ), }} /> ( ), }} /> ( ), }} /> ( ), }} /> ); }