// app/(tabs)/_layout.tsx import React from 'react'; import { Platform } from 'react-native'; import { Tabs } from 'expo-router'; import { useTheme } from '@react-navigation/native'; import { Dumbbell, Library, Users, History, User, } from 'lucide-react-native'; import type { CustomTheme } from '@/lib/theme'; export default function TabLayout() { const theme = useTheme() as CustomTheme; return ( ( ), }} /> ( ), }} /> ( ), }} /> ( ), }} /> ( ), }} /> ); }