feat(mobile): add complete consent flow (banner, health modal, privacy, i18n)

This commit is contained in:
Antoni Nuñez Romeu
2026-08-26 15:24:09 +02:00
parent 1f918be99d
commit 80c473e439
9 changed files with 350 additions and 2 deletions
@@ -379,6 +379,14 @@ export default function ProfileScreen() {
</TouchableOpacity>
</>
)}
<View style={[styles.menuDivider, { backgroundColor: colors.surfaceLow }]} />
<TouchableOpacity style={styles.menuRow} onPress={() => router.push('/privacy')}>
<View style={[styles.menuIconCircle, { backgroundColor: colors.surfaceLow }]}>
<Ionicons name="shield-checkmark-outline" size={20} color={colors.primary} />
</View>
<Text style={[styles.menuLabel, { color: colors.text }]}>{t('nav.privacy')}</Text>
<Ionicons name="chevron-forward" size={18} color={colors.textSecondary} />
</TouchableOpacity>
</View>
{/* Search history */}