I\'m trying to get a transparent overlay sliding down in an app, pretty much like this here (all/filter-by):
I was having same problem I did it this way.
import {View,StyleSheet} from "react-native";
//where you want it to render
Locating directions please wait ...
// at the bottom of your in styles
const styles = StyleSheet.create({
overlaycontainer:{
...StyleSheet.absoluteFillObject,
backgroundColor: '#000',
opacity:0.8,
justifyContent:"center",
alignItems:"center"
}
});