React Native使用Image作为图层

时间:2019-06-05 10:06:13

标签: css reactjs react-native

我想在页面其余部分的上方使用绝对图像作为图层,但是当页面打开时,我在Android而不是iOS上得到了炫目的效果。作为参考,背景为彩色,前景为白色。

这是我的实现方式。

我的口罩视图

const MaskView = styled.View`
  height: ${hp('33%')};
  width: ${wp('100%')};
  position: absolute;
  top: ${hp('9%')};
  bottom: 0px;
  left: 0px;
  right: 0px;
`

显示在 https://github.com/heineiuo/react-native-animated-linear-gradient

顶部

这是打开页面后在Android上的显示效果。

GIF explaining the problem

感谢帮助!

0 个答案:

没有答案
相关问题