/** * If you are not familiar with React Navigation, check out the "Fundamentals" guide: * https://reactnavigation.org/docs/getting-started * */ import { NavigationContainer, DefaultTheme, DarkTheme } from "@react-navigation/native"; import { createStackNavigator } from "@react-navigation/stack"; import * as React from "react"; import { ColorSchemeName } from "react-native"; import NotFoundScreen from "../screens/NotFoundScreen"; import { RootStackParamList } from "../types"; import BottomTabNavigator from "./BottomTabNavigator"; 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 // Read more here: https://reactnavigation.org/docs/modal const Stack = createStackNavigator(); function RootNavigator() { return ( ); }