import { StyleSheet, TouchableOpacity } from 'react-native'; import { useRouter } from 'expo-router'; import ParallaxScrollView from '@/components/default/ParallaxScrollView'; import { ThemedText, ThemedTextButton, ThemedView } from '@/components/theme'; import { IconSymbol } from '@/components/ui/IconSymbol'; const SettingsScreen = () => { const router = useRouter(); return ( } headerTitle={ Settings } > router.push('/settings/profile')} > Profile Settings Update profile information or sign out. ); }; export default SettingsScreen; const styles = StyleSheet.create({ headerImage: { color: '#808080', bottom: 6, left: 38, position: 'absolute', }, headerTitle: { position: 'absolute', bottom: 20, left: 16, right: 0, textAlign: 'center', fontSize: 48, lineHeight: 64, fontWeight: 'bold', }, section: { marginVertical: 8, borderRadius: 10, overflow: 'hidden', }, settingItem: { flexDirection: 'row', alignItems: 'center', padding: 16, backgroundColor: 'rgba(200, 200, 200, 0.1)', marginBottom: 1, }, icon: { marginRight: 16, }, settingContent: { backgroundColor: 'transparent', flex: 1, }, settingTitle: { fontSize: 17, fontWeight: '500', }, settingSubtitle: { fontSize: 14, opacity: 0.6, marginTop: 4, }, });