To use rgba in React Native, we can set it as a style value.
For instance, we write
<View style={{ backgroundColor: "rgba(0,0,0,0.5)" }} />;
to set the backgroundColor
style to a rgba value.
The 4th number is a the a value or the opacity.
So the View
has 0.5 opacity.