import { Entypo, FontAwesome, Ionicons } from "@expo/vector-icons"; import { createBottomTabNavigator } from "@react-navigation/bottom-tabs"; import TransactionHistoryScreen from "@screens/TransactionHistoryScreen"; import UserProfileScreen from "@screens/UserProfileScreen"; import { useTheme } from "@shopify/restyle"; import type { Theme } from "@themes/Theme"; import { Text, View } from "react-native"; import PaymentStackNavigator from "./PaymentStackNavigation"; const Tab = createBottomTabNavigator(); export const AppBottomTabsNavigator = () => { const theme = useTheme(); return ( ( ), tabBarActiveTintColor: theme.colors.secondary, }} /> ( ), tabBarActiveTintColor: theme.colors.secondary, }} /> ( ), tabBarActiveTintColor: theme.colors.secondary, }} /> ( ), tabBarActiveTintColor: theme.colors.secondary, }} /> ); }; const SettingsScreen = () => { return ( Settings! ); };