For my Overlay
I am trying to only set the height: 'auto'
when the screen width is 320 pixels wide.
Can anyone help?
const windowWidth = Dimensions.get("window").width;
const styles = StyleSheet.create({
container: [
{
padding: 0,
},
windowWidth === 320 && { height: "auto" },
],...
return (
<Overlay
isVisible={modalVisible}
overlayStyle={styles.container}
overlayBackgroundColor="#fff"
>
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…