import { IconSymbol } from '@/components'
import { getTabScreenOptions, NO_HEADER } from './ScreenOptions'
import { Stack, Tabs } from 'expo-router'
import React from 'react'
import { useColorScheme } from 'react-native'
import { RouteNames } from './RouteKeys'
import { metrics } from '@/themes'
export const RootNavigation: React.FC = () => (
)
export const AuthNavigation: React.FC = () => (
)
export const TabNavigation: React.FC = () => {
const colorScheme = useColorScheme()
return (
,
}}
/>
,
}}
/>
)
}