-
Notifications
You must be signed in to change notification settings - Fork 28.7k
Revert "Support Scribble Handwriting" #96615
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
This reverts commit 9490917.
@LongCatIsLooong Is it breaking? I know it changes the interface, but the changes should be optional. I can still take a look at the migration guide. |
Yeah there's a class that |
Our breaking change policy requires that downstream clients be adjusted (if necessary) before patches land, so that patches can always land cleanly without every breaking any customer tests (including google3). |
@LongCatIsLooong flutter/website#6679 I am curious where that implementer is – the only ones that I saw were updated as part of the PR ( |
@fbcouch It's our internal proprietary codebase.
@Hixie what's the best way to introduce new methods on an existing interface before landing the patch? I thought we use g3fix for things like this? |
@LongCatIsLooong Gotcha. I saw an example here where they created a temporary additional class to provide the missing members, so we could do something similar:
Do you want me to add that to the migration guide? |
g3fix is for things like updating BUILD files or fixing flutter_tools, not for breaking change policy fixes. You might be able to add a method using |
@fbcouch iirc that's a temporary workaround for the delta text input client so I would say we should avoid doing that again. I have a pull request out to replace the @Hixie ah ok good to know! hopefully I'll be able to land my intent pull request and get rid of the |
@LongCatIsLooong The breaking change page / migration guide was merged in – let me know how the internal migration goes and what (if anything) I need to do next to re-land the PR |
Feel free to open a reland pull request, I'll run the internal tests when the migration is done and hopefully merge the pull request. Thank you for the migration guide! |
This reverts commit 9c23106.
…er#96881)" (flutter#97405) This reverts commit c54ce01.
Reverts #75472
The pull request is a breaking change because it makes change the the
TextInputClient
interface.