-
Notifications
You must be signed in to change notification settings - Fork 29.7k
When a list is scrolling, children can't be tapped #5222
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
Conversation
|
Thank you very much for fixing! |
|
LGTM |
|
LGTM BUT NOT TO TRAVIS |
cb4f2b6 to
2fa8d33
Compare
|
The travis failure was because the gallery smoketest wasn't waiting for the scroll to settle before tapping the list, but that's now an ignored tap. |
|
@HansMuller you may be interested in the flutter gallery test change in this PR. I'm going to check this in some time after Travis goes green unless I hear otherwise. |
| .pump(const Duration(seconds: 1)); // Wait until the demo has opened. | ||
| await tester.pump(const Duration(seconds: 1)); // Wait until the demo has opened. | ||
|
|
||
| expect(find.text('Flutter Gallery'), findsNothing); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I feel like we've changed the case of Flutter gallery and Flutter Gallery at times, hopefully this is finding or not finding the right thing. :)
|
This blocked touches on lists for much longer than expected. I'm not sure if we're missing a setState when the animation ends or if we're just letting the animation go for much longer than it should, but either way, I'm reverting this for now. |
Fixes #5023