【发布时间】:2021-11-24 02:05:10
【问题描述】:
我正在尝试使用 react native 在 android 应用程序中对我的文本应用阴影,但我根本看不到阴影。 这是我的代码:
const styles = StyleSheet.create({
viewStyle:{
backgroundColor:'pink',
justifyContent:'center',
alignItems:'center',
height:60,
},
textStyle:{
fontSize:20
},
shadow:{shadowColor:'black',
shadowOffset:{width:10,height:10},
shadowOpacity:0.2
}
});
【问题讨论】:
标签: reactjs react-native react-native-android