import {createBottomTabNavigator} from '@react-navigation/bottom-tabs'; import React, {Fragment} from 'react'; import {NavigationIcon} from '../../components'; import Profile from '../profile/Profile'; const Tabs = createBottomTabNavigator(); const NavigationBar: React.FC = () => { return ( ({ tabBarIcon: ({focused}) => { switch (route.name) { case 'Home': return ; case 'Search': return ; case 'Upload': return ; case 'Notifications': return ; case 'Profile': return ; default: return ; } }, })} initialRouteName="Profile" tabBarOptions={{ showLabel: false, style: { backgroundColor: 'transparent', position: 'absolute', borderTopWidth: 0, left: 0, right: 0, bottom: '1%', }, }}> {/* Removed for Alpha for now */} {/* */} ); }; export default NavigationBar;