/** * If you are not familiar with React Navigation, refer to the "Fundamentals" guide: * https://reactnavigation.org/docs/getting-started * */ import {FontAwesome} from '@expo/vector-icons'; import {FontAwesomeIcon} from "@fortawesome/react-native-fontawesome"; import {faClock, faFilm, faHeart} from "@fortawesome/free-solid-svg-icons"; import Ionicons from '@expo/vector-icons/Ionicons'; import {createBottomTabNavigator} from '@react-navigation/bottom-tabs'; import {NavigationContainer, DefaultTheme, DarkTheme} from '@react-navigation/native'; import {createNativeStackNavigator} from '@react-navigation/native-stack'; import * as React from 'react'; import {ColorSchemeName, Pressable} from 'react-native'; import Colors from '../constants/Colors'; import useColorScheme from '../hooks/useColorScheme'; import NotFoundScreen from '../screens/NotFoundScreen'; import WatchLaterScreen from '../screens/WatchLaterScreen'; import FavoriteScreen from '../screens/FavoriteScreen'; import HomeScreen from '../screens/HomeScreen'; import {RootStackParamList, RootTabParamList, RootTabScreenProps} from '../types'; import LinkingConfiguration from './LinkingConfiguration'; export default function Navigation({colorScheme}: { colorScheme: ColorSchemeName }) { return ( ); } /** * A root stack navigator is often used for displaying modals on top of all other content. * https://reactnavigation.org/docs/modal */ const Stack = createNativeStackNavigator(); function RootNavigator() { return ( ); } /** * A bottom tab navigator displays tab buttons on the bottom of the display to switch screens. * https://reactnavigation.org/docs/bottom-tab-navigator */ const BottomTab = createBottomTabNavigator(); function BottomTabNavigator() { const colorScheme = useColorScheme(); return ( ) => ({ tabBarIcon: ({color, size}) => , headerShown: false, })} /> , }} /> , }} /> ); } /** * You can explore the built-in icon families and icons on the web at https://icons.expo.fyi/ */ function TabBarIcon(props: { name: any; color: string; size: number; }) { return ; }