显示模态时无法直接单击按钮

时间:2019-05-21 06:44:11

标签: react-native

我的主视图中有一个<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

有什么方法可以实现?

0 个答案:

没有答案