我的主视图中有一个<Button />
在主视图上显示Modal
时,无法直接单击<Button />
。
我必须关闭Modal
,然后才能单击<Button />
但是我设置了宽度可以为高度,但是我仍然无法单击<Button />
Modal覆盖了整个主视图。
<Modal
style={{
justifyContent: 'center',
width:350,
height: 350,
alignItems: 'center', backgroundColor: 'pink',
}}
onRequestClose={() => {}}
visible={visible}
transparent
animationType='slide'
>
<View style={{ backgroundColor: 'blue' }}>
<Text style={{ fontSize: 40 }}>Hi hi Hi</Text>
</View>
</Modal>
当<Button />
可见为真时,我仍想单击Modal
。
有什么方法可以实现?