使用自定义属性时,我正在使用本机Web并遇到图像问题。图片在Android上可以正常显示,但在iOS上则消失。
<Image
style={{
width: 24,
height: 24,
transform: [{
rotateX: (this.props.status === 'ImportantInfo' ? '0deg' : '180deg')
}]
}}
source={arrow}
/>
当 rotateX 的值为 0deg 时,图像可见,但是当iPhone中的值更改为 180deg 时,图像消失。
当我为图像设置自定义tintColor时,会发生相同的问题。