🐛 fix(figgos): use contain resizeMode to prevent card side cropping

Thumbnails in showcase and collection used resizeMode="cover" which
cropped the sides of portrait-oriented card images after bg trimming.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Chr1st1anG 2026-02-12 13:29:42 +01:00
parent a117d5479b
commit e29de50b11
2 changed files with 2 additions and 2 deletions

View file

@ -145,7 +145,7 @@ export default function CarouselScreen() {
<Image
source={{ uri: item.imageUrl! }}
style={{ width: '100%', height: '100%' }}
resizeMode="cover"
resizeMode="contain"
/>
</View>
</Pressable>

View file

@ -46,7 +46,7 @@ function CardThumbnail({
<Image
source={{ uri: figure.imageUrl! }}
style={{ width: '100%', height: '100%' }}
resizeMode="cover"
resizeMode="contain"
/>
</View>
</Pressable>