// 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 { convertHSLValues } from '@/lib/theme'; export default function TabLayout() { const { colors, dark } = useTheme(); const { purple, mutedForeground } = convertHSLValues(dark ? 'dark' : 'light'); return ( ( ), }} /> ( ), }} /> ( ), }} /> ( ), }} /> ( ), }} /> ); }