We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
看这个代码:
if (moveXLength / dragRate <= maxSlideLength) { // 如果位移距离在可拉动距离内,更新SlideBackIconView的当前拉动距离并重绘,区分左右 if (isAllowEdgeLeft && isSideSlideLeft) { slideBackIconViewLeft.updateSlideLength(moveXLength / dragRate); } else if (isAllowEdgeRight && isSideSlideRight) { slideBackIconViewRight.updateSlideLength(moveXLength / dragRate); } }
举个栗子,先只滑到一半,然后突然滑到超过maxSlideLength,SlideBackIconView是不是就没有更新了?状态还维持在一半的时候
The text was updated successfully, but these errors were encountered:
fix ParfoisMeng#8
2cdba06
修复这个问题的代码已经提交pr了
Sorry, something went wrong.
的确会有这个问题。 PR代码看了,已修复。 但是。。为什么不格式化呢。。。🌚🌚🌚
漏了一步😅
Successfully merging a pull request may close this issue.
看这个代码:
举个栗子,先只滑到一半,然后突然滑到超过maxSlideLength,SlideBackIconView是不是就没有更新了?状态还维持在一半的时候
The text was updated successfully, but these errors were encountered: