-
Notifications
You must be signed in to change notification settings - Fork 29.8k
Reland "migrate some material files to nullsafety (#67078)" #67318
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
7c61f16 to
d84c2d4
Compare
|
/cc @a14n @Hixie @pcsosinski |
Hixie
left a comment
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.
4f53522 to
0053366
Compare
| Future<void> close() async { | ||
| void close() { |
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.
This was the reason for the google3 failure: In #67078 this method was marked async, which changes the timing slightly for tests. There's no need for it to be async, though. The main goal of this commit is to revert that.
jonahwilliams
left a comment
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
a14n
left a comment
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
|
Landing, since the tree is actually green, but not reported properly (according to @jonahwilliams). |

This reverts commit a0a65fc.
Google failures were cased by marking
_StandardBottomSheetState.close()asasyncin #67078:https://github.com/flutter/flutter/pull/67078/files#diff-ad7e5ee7be5375e4242652ddc6448da7R2723
This changed the timing slightly in tests. Since there is no need for that method to be
async, I am reverting that change to restore the old behavior. Additionally, I also cleaned up the nullability ofScaffold.geometryOfand_StandardBottomSheet.animationControllerto simplify the code.See the last commit for changes over #67078.