-
Notifications
You must be signed in to change notification settings - Fork 1.6k
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
Dart fix support for dart:X
libraries
#59764
Comments
Summary: User wants |
The tool currently looks for a So the right answer here is probably to have a second place to look for fixes related to |
That would be great @bwilkerson! If so, we'd probably not put the fix data in the engine like in the linked PR. Instead, putting it with all of the other fix data we already have in package:flutter. |
It was suggested that if we do this, we'd probably hope to be able to then put all fixes (Framework + Engine) in the same place. |
Why? It would be more work for us to support that and I don't understand the value proposition. |
Oh ok. I think it was because folks said they would prefer if fixes were centrally located. |
I noticed some deprecations in the
Color
class were causing some pain for users, so I tried to see if we could add dart fix support fordart:ui
.First I tried setting it up like we have in the framework, with a fix_data directory in the lib/ folder at:
engine/src/flutter/lib/
Then I tried moving the fix_data to
engine/src/flutter/lib/ui/
, but that did not work either.Am I holding it wrong?
Can dart fix work in these libraries?
See small fix written in flutter/flutter#160616
The text was updated successfully, but these errors were encountered: