Mejoras en el mapa (satélite, ubicación), configuración de relación de aspecto en cámara y correcciones de estabilidad

This commit is contained in:
2026-07-31 12:52:36 +02:00
parent 603a03946b
commit 80e4657b15
74 changed files with 1525 additions and 202 deletions
+6 -7
View File
@@ -30,7 +30,6 @@ import {
Badge,
Card,
ChipSelect,
COLORS,
EmptyState,
Field,
ISSUE_PRIORITY_COLOR,
@@ -111,7 +110,7 @@ export function IssueDetailContent({ issueId }: { issueId: number }) {
if (!issue) {
return (
<View style={styles.center}>
<Text style={{ color: COLORS.muted }}>Cargando</Text>
<Text style={{ color: '#666' }}>Cargando</Text>
</View>
);
}
@@ -124,15 +123,15 @@ export function IssueDetailContent({ issueId }: { issueId: number }) {
<Text style={styles.title}>{issue.title}</Text>
<View style={styles.badges}>
{issue.status && (
<Badge label={issue.status} color={ISSUE_STATUS_COLOR[issue.status] ?? COLORS.muted} />
<Badge label={issue.status} color={ISSUE_STATUS_COLOR[issue.status] ?? '#666'} />
)}
{issue.priority && (
<Badge
label={issue.priority}
color={ISSUE_PRIORITY_COLOR[issue.priority] ?? COLORS.muted}
color={ISSUE_PRIORITY_COLOR[issue.priority] ?? '#666'}
/>
)}
{issue.type && <Badge label={issue.type} color={COLORS.muted} />}
{issue.type && <Badge label={issue.type} color="#666" />}
</View>
{issue.description ? <Text style={styles.desc}>{issue.description}</Text> : null}
@@ -225,9 +224,9 @@ const styles = StyleSheet.create({
taskRow: { flexDirection: 'row', alignItems: 'center', paddingVertical: 8, gap: 10 },
checkbox: { fontSize: 20 },
taskText: { fontSize: 15, flex: 1 },
taskDone: { textDecorationLine: 'line-through', color: COLORS.muted },
taskDone: { textDecorationLine: 'line-through', color: '#666' }, // muted
addRow: { flexDirection: 'row', alignItems: 'flex-end', gap: 8, marginTop: 4 },
comment: { marginBottom: 6 },
commentBody: { fontSize: 14 },
commentMeta: { fontSize: 11, color: COLORS.muted, marginTop: 4 },
commentMeta: { fontSize: 11, color: '#666', marginTop: 4 }, // muted
});