RN Modal 滚动穿透问题

在 js 写移动端页面时都会遇到滚动穿透,Google基本能找到的解决方案

  • https://github.com/pod4g/tool/wiki/%E7%A7%BB%E5%8A%A8%E7%AB%AF%E6%BB%9A%E5%8A%A8%E7%A9%BF%E9%80%8F%E9%97%AE%E9%A2%98
  • https://uedsky.com/2016-06/mobile-modal-scroll/

在RN中也同样存在这个问题,以下主要在讨论如何禁用滚动的事件传递

  • https://github.com/facebook/react-native/issues/1046
    解决方案:
    RN Modal 滚动穿透问题_第1张图片
    Modal背景禁用手势处理

    RN Modal 滚动穿透问题_第2张图片
    scrollView处理

PanReponder 文档

  • https://facebook.github.io/react-native/docs/panresponder.html
  • https://reactnative.cn/docs/0.44/panresponder.html

你可能感兴趣的:(RN Modal 滚动穿透问题)