So I have drawer which has background black with opacity 0.5 , it works fine.I can see transparency.Now problem is even the button is having opacity which I dont want , how to reset its opacity to 1 ?I tried RGBA , still opacity is not resetting in react native.
<View style={{backgroundColor:'black',opacity:0.5,height:'100%'}}>
<Button backgroundColor:'black',opacity:1>
<Text>Click here </Text>
</Button>
</View>