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