import { TabScreenName } from '@/core/enums'; import { BottomTabParamList } from '@/core/types'; import { HomeScreen, MessagesScreen, NotificationScreen, ProfileScreen, } from '@/features/tab/screens'; import { useNetwork, useTailwind } from '@/hooks'; import { tabScreenOptions } from '@/navigators/options'; import { createBottomTabNavigator } from '@react-navigation/bottom-tabs'; import { BottomTabNavigationConfig } from '@react-navigation/bottom-tabs/lib/typescript/src/types'; import CustomizedTabBar from './CustomizedTabBar'; const BottomTab = createBottomTabNavigator(); const TabBar: NonNullable = props => ( ); export default function BottomTabBar() { const tw = useTailwind(); const onlineScreen = useNetwork(); return ( ); }