我正在创建一个半透明的覆盖层,并且我想使用elevation
在具有 react-native 的Android上添加阴影。问题在于它也在渲染内部“阴影”,并且更高的标高会增大阴影。 我如何摆脱它?
相关代码:
<View style={{
backgroundColor: 'rgba(255, 255, 255, .5)',
padding: 50,
elevation: 10, // 20 on image in the right
}}>
<MyButton onPress={() => this.newGame()} title="New Game" />
</View>