美文网首页
react-native 底部阴影效果

react-native 底部阴影效果

作者: 朱传武 | 来源:发表于2021-02-14 21:51 被阅读0次

    只有下边缘有阴影:

    <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>
    
    image.png

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

    相关文章

      网友评论

          本文标题:react-native 底部阴影效果

          本文链接:https://www.haomeiwen.com/subject/aajuxltx.html