import { Stack } from 'expo-router'; import { useColor } from '@/hooks/useColor'; import { Platform, useColorScheme } from 'react-native'; import { Text } from '@/components/ui/text'; import { isLiquidGlassAvailable } from 'expo-glass-effect'; export default function SettingsLayout() { const theme = useColorScheme(); const text = useColor('text'); const background = useColor('background'); return ( Platform.OS === 'android' ? ( Settings ) : undefined, }} /> ); }