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