shadowoffset在android react native中对我不起作用。
这是我的密码,

<View style={styles.viewimage}>
   <Image
       style={styles.picture}
       source={require('../../../assets/img/vijy.jpg')}
   />
</View>

款式:
viewimage:{
  backgroundColor:'yellow',
  shadowOffset:
   {
    width: 10,
    height: 10,
  },
  shadowColor: 'black',
  shadowOpacity: 1.0,
 },

最佳答案

viewimage: {
  backgroundColor: '#fff',
  shadowColor:'black',
  shadowOffset: {
    width: 0,
    height: 3
  },
  shadowRadius: 5,
  shadowOpacity: 1.0,
  elevation: 5
},

这会奏效的。elevation:5对于Android,剩余的属性用于iOS。

08-17 04:04