【发布时间】:2020-04-07 13:38:44
【问题描述】:
我正在使用resizeMode:'contain',因为图像正在拉伸。但 resizeMode 不适用于 expo 应用程序。
image: {
width: 80,
height: 80,
borderRadius: 10,
resizeMode:'contain',
},
<TouchableOpacity onPress={() => onPress({ product })}>
<Image
source={{ uri: getProductImage(product.images[0].src, 100) }}
style={styles.image}
/>
</TouchableOpacity>[enter image description here][1]
【问题讨论】:
标签: react-native expo react-native-stylesheet