gpt4 book ai didi

javascript - 图像中的阴影 React Native

转载 作者:行者123 更新时间:2023-12-02 03:35:49 24 4
gpt4 key购买 nike

我在图像中放置阴影时遇到困难,我尝试将其放入ViewImage中,但没有成功

<View style={styles.ContainerImageProfile}>
<Image style={styles.ImageProfile} source={{uri: 'profile.png'}} />
</View>

ContainerImageProfile: {
width: 90,
height: 90,
borderRadius: 50,
backgroundColor: 'red',
overflow: 'hidden',
marginTop: 100,
shadowColor: '#000',
shadowOffset: { width: 0, height: 2 },
shadowOpacity: 0.8,
shadowRadius: 50,

},
ImageProfile: {
width: '100%',
height: '100%'
},

最佳答案

您需要设置高度才能看到阴影,就像您可以查看此snack ,在组件中设置背景颜色也有助于在 Android 和 IOS 中工作(我定义了一个透明的)

ContainerImageProfile: {

width: 90,
height: 90,
borderRadius: 50,
overflow: 'hidden',
marginTop: 100,

//Properties to setup your Shadow

shadowOffset: { width: 10, height: 10 },
shadowColor: '#000',
shadowOpacity: 1,
elevation: 10,
backgroundColor : "#000"

}

关于javascript - 图像中的阴影 React Native,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50262968/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com