import { Tabs } from 'expo-router'; import React from 'react'; import { Platform, View, Image, StyleSheet } from 'react-native'; import { HapticTab } from '@/components/HapticTab'; import { IconSymbol } from '@/components/ui/IconSymbol'; import TabBarBackground from '@/components/ui/TabBarBackground'; import { Colors } from '@/constants/Colors'; import { useColorScheme } from '@/hooks/useColorScheme'; const icon_tab1_s = require('@/assets/images/tab/icon_tab1_s.png'); const icon_tab1_u = require('@/assets/images/tab/icon_tab1_u.png'); const icon_tab2_s = require('@/assets/images/tab/icon_tab2_s.png'); const icon_tab2_u = require('@/assets/images/tab/icon_tab2_u.png'); const icon_tab3_s = require('@/assets/images/tab/icon_tab3_s.png'); const icon_tab3_u = require('@/assets/images/tab/icon_tab3_u.png'); const icon_tab4_s = require('@/assets/images/tab/icon_tab4_s.png'); const icon_tab4_u = require('@/assets/images/tab/icon_tab4_u.png'); export default function TabLayout() { const colorScheme = useColorScheme(); return ( ( ), }} /> ( ), }} /> ( ), }} /> ( ), }} /> ); } const styles = StyleSheet.create({ tabIcon: { width: 24, height: 24, }, });