import { Tabs } from "expo-router/tabs"; import {StyleSheet, View} from "react-native" import { FontAwesome } from "@expo/vector-icons"; import {useThemeColor} from "../../hooks/hooks"; import React from "react"; export default function Layout() { // const selectedColor: string = useThemeColor( "tabIconSelected"); // const defaultColor: string = useThemeColor("tabIconDefault"); // const backgroundColor: string = useThemeColor("backgroundColor"); // const tabBarColor: string = useThemeColor("tabBarColor"); const styles = StyleSheet.create({ sceneContainer: { backgroundColor: useThemeColor("backgroundColor"), }, tabBar: { backgroundColor: useThemeColor("backgroundColor"), } }); const screenOptions = { tabBarActiveTintColor: useThemeColor( "tabIconSelected"), tabBarInactiveTintColor: useThemeColor("tabIconDefault"), headerShown: false, tabBarStyle: styles.tabBar, } return ( ( ), } }/> ( ), } }/> ( ), } }/> ); }