Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我试图了解如何为 RN ScrollView设置阈值。
这是因为如果您在水平 ScrollView 中有多个垂直可滚动视图,则视图的滚动非常困难。
所以我只需要保持水平滚动的东西,直到手指水平滑动某个像素跨度。
有人知道如何存档吗?
您可以使用 onScrollEnd 中的本机滚动事件来获取滚动的速度,然后仅在超过一定量时水平滚动。在大多数垂直/水平滚动中,大多数用户只向一个方向滚动。如果您真的想实现基于距离的滚动,您需要将 PanResponder 附加到您的组件并比较 Grant 和 Release 事件的距离。