0
点赞
收藏
分享

微信扫一扫

react-native 底部阴影效果

IT影子 2021-09-25 阅读 319
日记本

只有下边缘有阴影:

<View style={{ overflow: 'hidden', paddingBottom: 5 }}>
    <View
      style={{
        backgroundColor: '#fff',
        width: 300,
        height: 60,
        shadowColor: '#000',
        shadowOffset: { width: 1, height: 1 },
        shadowOpacity:  0.4,
        shadowRadius: 3,
        elevation: 5,
      }} 
    />
  </View>


一定要有一个backgroundcolor属性才起作用。

举报

相关推荐

0 条评论