import { AntDesign, Entypo, FontAwesome, FontAwesome5, Ionicons } from '@expo/vector-icons'; import { createBottomTabNavigator } from '@react-navigation/bottom-tabs'; import React from 'react'; import { useColors } from './common/colors'; import Calendar from './screens/Calendar'; import Dashboard from './screens/Dashboard'; import Schedule from './screens/Schedule'; import Settings from './screens/Settings'; import Search from './screens/Search'; import { View, Text, Image, StyleSheet } from 'react-native'; const Tab = createBottomTabNavigator(); const BottomTabs = () => { const colors = useColors(); return ( , tabBarIcon: ({ color, size }) => }} /> , tabBarIcon: ({ color, size }) => }} /> , tabBarIcon: ({ color, size }) => }} /> , tabBarIcon: ({ color, size }) => }} /> , tabBarIcon: ({ color, size }) => }} /> ); }; export default BottomTabs; const CustomHeaderTitle = ({ title }) => { const colors = useColors(); return ( KlaTab - {title} ); }; const styles = StyleSheet.create({ container: { flexDirection: 'row', alignItems: 'center', }, logo: { width: 30, height: 30, marginRight: 8, }, title: { fontSize: 18, }, });