-
Notifications
You must be signed in to change notification settings - Fork 53
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
Update widget_test.dart for an upstream LayoutBuilder fix #113
Conversation
LayoutBuilder migration: LayoutBuilders no longer do double layout (currently the fix is behind a temporary flag). Related flutter/flutter PR: flutter/flutter#147856
Hi, could you please comment out that line and make a comment pointing to this? Thanks! |
Done. For posterity, I think the flutter version specified in the github action has to be updated / unpinned at some point so the |
Totally agree! Btw, have you tried to update it (i.e. does CI directly work on 3.22)? I have not tried 3.22 yet, but if it works directly, then this PR may include that update. EDIT: Make a PR here: #114 |
Sorry I have not tried 3.22. The migration flag isn't part of the current stable release either (the pr that introduced it was merged today). |
Oh I see, no problem! |
LayoutBuilder migration: LayoutBuilders no longer do double layout (currently the fix is behind a temporary flag
LayoutBuilder.applyDoubleRebuildFix
).Related flutter/flutter PR: flutter/flutter#147856
Unfortunately the presubmit checks are currently run against the stable branch of flutter which does not have the migration flag yet so I removed the
expect
statement altogether.flutter_portal/.github/workflows/build.yml
Lines 14 to 17 in 786cd79