import { Tabs } from 'expo-router'; import CustomTabBar from '@/components/CustomTabBar'; import FloatingChatButton from '@/components/FloatingChatButton'; import { View, StyleSheet } from 'react-native'; import { Colors } from '@/constants/theme'; export default function TabLayout() { return ( } screenOptions={{ headerShown: false, }} > ); } const styles = StyleSheet.create({ root: { flex: 1, backgroundColor: Colors.background.primary, }, });