react-native-spring-scrollview icon indicating copy to clipboard operation
react-native-spring-scrollview copied to clipboard

React Native Spring ScrollView V3 is a high performance cross-platform native bounces ScrollView for React Native.(iOS & Android)

Results 28 react-native-spring-scrollview issues
Sort by recently updated
recently updated
newest added

![image](https://user-images.githubusercontent.com/81273619/154700936-3c89f1e4-353d-40d8-9f10-eed2ab369d19.png) 瀑布流中似乎没办法定义整个瀑布流两边的宽度 导致中间的间隙比较大。 请问怎么让左中右的间隙相等? 如果在整个瀑布流中加style={{Padding: 10}}的话,会导致padding的部分无法触碰滚动, 也不能通过 index来设置,因为index会随着高度的不同变化,不是按照顺序来的 不知有没有解决办法呢?

Getting error when using the module in RN Version 0.69.0 but works fine with 0.68. Tried cleaning the project but still same issue. 2

瀑布流的高度不确定,只能有个估算值,这个有修正估算值的方法吗

瀑布流曝光和list 曝光你们都怎么解决的啊,我没到有这种属性的介绍啊,因为要做曝光埋点事件,不知道怎么获取曝光事件

很喜欢大佬做的插件,确实在3.0版本会出现滑动点击过于灵敏的问题,于是把largelist和springscrollview都换成4.0分支的版本,但是使用4.0会出现`Cannot read property 'contentOffset' of undefined`的报错,注释掉SpringScrollView.js中useAnimatedReaction hook里面这行代码:`823: if (props.onScroll) runOnJS(props.onScroll)(offset);` 就没问题了,不过也导致不能滑动列表了。 这里LargeList只传入了data,heightForIndexPath和renderIndexPath,在3.0下没问题,4.0就报错了。 其中remainted版本和分支中package.json的版本一致,如果升级到最新版本,报的错是`(offset: {x: number, y: number}, previous: {x: number, y: number}) => {`这行代码附近的`unexpected token`错误,具体错误忘记记录了。 希望大佬能解答下,或者告知下大概是哪个地方的问题,我这边自己研究下解决,感谢感谢!(PS:另外能否告知下4.0版本大概什么时候能完工呢,因为最近做新项目,眼巴巴等着这个插件更新4.0。。。找遍github感觉只有这个插件能解决大列表的需求了)

Getting "Expected a type" error when using with React Native "0.68.2". Looks like fix is already committed but new release have not been made.

in Android device getting this error ![Screenshot_2022-03-09-08-37-08-69_578c666b900258de47c0e4a8ec47be2a](https://user-images.githubusercontent.com/13798981/157365189-de7f0c47-c88e-4c38-a8ff-d8bf6afe6878.jpg)

最近发现项目里使用largeList组件的列表,在按住屏幕不放后上下滑动后,列表内item点击事件失效。 发现3.0.2版本为了修复#75 增加了以下代码: `onStartShouldSetResponderCapture={() => this._dragging}` 部分场景中this._dragging没有被重置成flase导致子视图无法响应touch事件,将版本后退至3.0.1-rc.5,问题解决。