Added new atributes to view in notice id

Also added SafeAreView to userid
This commit is contained in:
2025-06-10 21:38:10 +02:00
parent b96e8f264b
commit 90ada963bf
2 changed files with 14 additions and 2 deletions

View File

@@ -392,6 +392,16 @@ export default function NoticeDetails() {
<Text className="font-bold text-gray-950">{notice.category}</Text>
</Text>
</Box>
{notice.attributes && notice.attributes.length > 0 && (
<Box className="mt-4 bg-gray-50 p-3 rounded-lg shadow-sm">
{notice.attributes.map((attribute, index) => (
<Text key={index} className="text-sm text-typography-500 mb-1">
{attribute.name}:{" "}
<Text className="font-bold text-gray-950">{attribute.value}</Text>
</Text>
))}
</Box>
)}
<Box className="mt-4 bg-gray-50 p-3 rounded-lg shadow-sm">
<Text className="text-2xl text-gray-950">Opis ogloszenia</Text>