import React from 'react'; import { Tabs } from 'expo-router'; import { Dimensions, Platform } from 'react-native'; import { TabAccountIcon, TabChargingIcon, TabHomeIcon } from '../../../component/global/SVG'; export default function TabLayout() { const { height } = Dimensions.get('window'); // Calculate marginBottom based on screen height const calculateMarginBottom = () => { if (Platform.OS === 'ios') return 0; if (height < 600) return 0; return 15; }; return ( ( ) }} /> ( ) }} /> ( ) }} /> ); }