我想在页面其余部分的上方使用绝对图像作为图层,但是当页面打开时,我在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上的显示效果。
感谢帮助!