Reacta a imagem de capa nativa
// You want `resizeMode`
The options are 'cover' | 'contain' | 'stretch' | 'repeat' | 'center'
<Image
style={{
width: size,
height: size,
resizeMode: "contain", // <--
}}
source={...}
/>
Moshe