在React Native Web中进行转换后图像隐藏

时间:2019-01-30 14:34:04

标签: reactjs react-native react-native-ios react-native-web

使用自定义属性时,我正在使用本机Web并遇到图像问题。图片在Android上可以正常显示,但在iOS上则消失。

<Image
    style={{
      width: 24,
      height: 24,
      transform: [{
        rotateX: (this.props.status === 'ImportantInfo' ? '0deg' : '180deg')
      }]
    }}
    source={arrow}
/>

rotateX 的值为 0deg 时,图像可见,但是当iPhone中的值更改为 180deg 时,图像消失。

当我为图像设置自定义tintColor时,会发生相同的问题。

0 个答案:

没有答案