-
Notifications
You must be signed in to change notification settings - Fork 726
嵌套的ListView会误触发刷新操作 #10
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
Comments
解决了,禁止内层的滚动事件冒泡: SmartRefresher(
child: ListView.builder(
itemBuilder: NotificationListener(
onNotification: (n) => true,
child: PageView.builder(...)
)
)
) |
Closed
Closed
Closed
Closed
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
外层为垂直ListView,内层中有水平的ListView。
现在的情况是在左右滑动内层的 listview 的时候,也会导致触发下拉刷新,怎么禁用呢,没有看到控制的地方。
The text was updated successfully, but these errors were encountered: