//This file serves as the index.tsx file (main) import { MaterialCommunityIcons } from '@expo/vector-icons'; import { Link, Tabs } from 'expo-router'; import { Pressable } from 'react-native'; import { appTheme } from "../../theme"; import Colors from '../../constants/Colors'; // creatign tab bar icons and passing establishing properties to be passed during exectution // see more icon families at https://icons.expo.fyi/ function TabBarIcon(props: { name: React.ComponentProps['name']; color: string; }) { return ; } // Creating the tab bar at the bottom export default function TabLayout() { // const colorScheme = useColorScheme(); return ( , //using the tabBarIcon option within tabs and calling the TabBarIcon function created above to pass the established properties to it // Info circle at the top right // headerRight: () => ( // // // {({ pressed }) => ( // // )} // // // ), }} /> , }} /> , }} /> ); }