import FontAwesome from '@expo/vector-icons/FontAwesome'; import { Link, Tabs } from 'expo-router'; import React from 'react'; import { Pressable } from 'react-native'; import { useClientOnlyValue } from '@/components/useClientOnlyValue'; import { useColorScheme } from '@/components/useColorScheme'; import Colors from '@/constants/Colors'; // 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 = useColorScheme(); return ( , headerRight: () => ( {({ pressed }) => ( )} ), }} /> , headerRight: () => ( {({ pressed }) => ( )} ), }} /> , headerRight: () => ( {({ pressed }) => ( )} ), }} /> ); }