-
Notifications
You must be signed in to change notification settings - Fork 28.6k
Continue the clipBehavior breaking change #61366
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
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.
LGTM
There are some failed tests in the test run of cl/321021912. Investigating... |
This is currently blocked by dnfield/flutter_svg#384. The "customer: dream" needs it to update the code so we can continue this breaking change. CC @dnfield |
This follows flutter#59364 and cl/319911104
Several CLs that "Add clipBehavior to FittedBox, Wrap, and Stack" have landed internally and I'm starting a new test at cl/331657143. I'm only expecting minor AA mismatches in this test. If it's as expected, I'll merge this PR. CC @renyou |
New FittedBox are added to Google very quickly. Let's first roll other part of changes into Google first.
…lutter/flutter#61366. This PR removes the `overflow` parameter when setting up the `Stack` object which is used as part of the flutter speed dial object and therefore is breaking build targeting the master branch of flutter
It seems as though as a result of flutter/flutter@7948a78#diff-7f71460835520a1820d69cd0b6994c01L3316 which was merged into flutter master in flutter/flutter#61366 The Stack object removed the option for overflow and instead clipBehavior should be set to Clip.none
This is a continuation of flutter#61366 after cl/333620714 See also https://flutter.dev/go/clip-behavior
This is a continuation of #61366 after cl/333620714 See also https://flutter.dev/go/clip-behavior
Fix the breaking change introduced by flutter/flutter@7948a78 and merged into flutter master by flutter/flutter#61366 by replacing `overflow: Overflow.visible,` with `clipBehavior: Clip.none,` in the Stack object instantiation.
This follows #59364 and cl/319911104