auto-commit for ba589f3d-6303-4317-b4ba-a9a169552516

This commit is contained in:
emergent-agent-e1
2025-11-09 02:39:24 +00:00
parent f8c6069aaf
commit 0344761481
+4 -4
View File
@@ -87,13 +87,13 @@ export default function SettingsScreen({ navigation }: any) {
);
return (
<View style={[styles.container, { paddingTop: insets.top }]}>
<View style={[styles.container, { paddingTop: insets.top, backgroundColor: colors.background }]}>
{/* Header */}
<View style={styles.header}>
<View style={[styles.header, { backgroundColor: colors.card, borderBottomColor: colors.border }]}>
<TouchableOpacity onPress={() => navigation.goBack()} style={styles.backButton}>
<Ionicons name="arrow-back" size={24} color="#1F2937" />
<Ionicons name="arrow-back" size={24} color={colors.text} />
</TouchableOpacity>
<Text style={styles.headerTitle}>Settings</Text>
<Text style={[styles.headerTitle, { color: colors.text }]}>Settings</Text>
<View style={{ width: 40 }} />
</View>