javascript – 如何通过点击ReactNative中的屏幕来关闭模态

前端之家收集整理的这篇文章主要介绍了javascript – 如何通过点击ReactNative中的屏幕来关闭模态前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如何通过在React Naitve中点击屏幕来关闭模态视图,RN Modal组件似乎不提供api

解决方法

您可以在模态组件中使用TouchableWithoutFeedback组件,并使用onPress属性来解除模态.
<Modal visible={booleanThatHandlesModalVisibility}>
  <TouchableWithoutFeedback onPress={() => funcToHideModal()}>
    <View>
    ...
    </View>
  </TouchableWithoutFeedback>
</Modal>

如果你想要一个不隐藏模态的模态区域,你可以添加另一个没有onPress属性的TouchableWithoutFeedback来在第一个之前捕获事件,如下所示:

<Modal visible={booleanThatHandlesModalVisibility}>
  <TouchableWithoutFeedback onPress={() => funcToHideModal()}>
    <View>
      <TouchableWithoutFeedback>
        <View>...</View>
      </TouchableWithoutFeedback>
    </View>
  </TouchableWithoutFeedback>
</Modal>
原文链接:https://www.f2er.com/js/156598.html

猜你在找的JavaScript相关文章