You specified `onScroll` on a <ScrollView> but not `scrollEventThrottle`. You will only receive one event. Using `16` you get all the events but be aware that it may cause frame drops, use a bigger number if you don't need as much precision
时间: 2024-04-28 10:20:58 浏览: 260
MyBatis异常-Property 'configLocation' not specified, using default MyBatis Configuration
5星 · 资源好评率100%
这是一个React Native的警告信息,意思是你在一个ScrollView组件上指定了onScroll事件,但是没有指定scrollEventThrottle属性。如果不指定scrollEventThrottle属性,ScrollView组件只会在滚动结束后触发一次onScroll事件。为了获取更多的滚动事件,你需要设置一个scrollEventThrottle属性来设置事件的间隔时间。这个属性的值越小,获取到的事件越多,但是也可能会导致性能问题。如果你不需要那么高的精度,可以使用一个较大的值来避免性能问题。
阅读全文