-
Notifications
You must be signed in to change notification settings - Fork 75
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
PullView&&PullList解决下拉顶部偶尔出现空白 #45
Comments
使用flatlist&&Scrollview |
@wuyunqiang 使用了你这种方式之后再ios还是有问题,下拉狠了有留白啊,怎么解决啊? |
不知道你是使用的我的代码 还是使用的作者的然后自己修改的 你是用的scrollview还是flatlist 我使用改过后的没有遇到你说的问题啊。如果实在不行 那就只能换个库或者尝试将iOS的弹性属性设置false看看行不行吧。 |
PanResponder不管上滑手势之后,体检就好多了
这个时候,上滑就感觉到卡顿。 |
@104gogo 怎么不管上滑手势? 我也想优化这一点 |
@zengyimou 太久以前写的了,感觉应该是下面这段代码,使用 isVerticalGesture 方法进行了判断
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
这个问题主要是出现在iOS上,因为iOS的scrollview是有弹性的Android没有,
个人的解决办法是在判断是否拦截上拉事件时返回false,不拦截。这样上拉还是交给scrollview自己处理,希望可以解决问题,如果不能希望对帮助你解决问题提供一个思路。
代码:
如果发现不能向上滑动可以把scrollview或者listview里面的
scrollEnabled={this.state.scrollEnabled}这个代码去掉。
目前我用着至少比以前好了。
The text was updated successfully, but these errors were encountered: