-
Notifications
You must be signed in to change notification settings - Fork 29.7k
add text_input_action deserialization factory #131776
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
|
It looks like this pull request may not have tests. Please make sure to add tests before merging. If you need an exemption to this rule, contact Hixie on the #hackers channel in Chat (don't just cc him here, he won't see it! He's on Discord!). If you are not sure if you need tests, consider this rule of thumb: the purpose of a test is to make sure someone doesn't accidentally revert the fix. Ask yourself, is there anything in your PR that you feel it is important we not accidentally revert back to how it was before your fix? Reviewers: Read the Tree Hygiene page and make sure this patch meets those guidelines before LGTMing. |
|
Hi @5v1988, Thanks for the contribution! It looks like this PR is missing a couple of things though:
|
|
Hi @5v1988, since there has not been an update here for some time, I am going to close this PR for now to remove it from our review queue. If you would like to return to it and address the feedback above, please feel free to reopen it. Thanks for contributing! |
|
I ran into an issue relates to this PR today and I'm will to fix. Should I create a new PR or reopen (don't know how) this one? |
@nonvachara-paloit thanks for contributing! I would recommend opening a new PR since this was authored by someone else. |
…endTextInputAction usages through flutter_driver. (#139197) **As a follow up to #131776 **Summary:** Previously in #106561, SendTextInputAction was added to Flutter Driver. But it still cannot be used from flutter_driver tests. This PR intends to resolve that issue. **Issue:** An `DriverError: Unsupported command kind send_text_input_action` would be thrown from `flutter_driver/lib/src/common/deserialization_factory.dart` when a call to `driver.sendTextInputAction(TextInputAction.done);` was made despite the method `sendTextInputAction` is available for use since #106561. Previous works has been done in #131776, I merely added tests. Best regards.
…endTextInputAction usages through flutter_driver. (flutter#139197) **As a follow up to flutter#131776 **Summary:** Previously in flutter#106561, SendTextInputAction was added to Flutter Driver. But it still cannot be used from flutter_driver tests. This PR intends to resolve that issue. **Issue:** An `DriverError: Unsupported command kind send_text_input_action` would be thrown from `flutter_driver/lib/src/common/deserialization_factory.dart` when a call to `driver.sendTextInputAction(TextInputAction.done);` was made despite the method `sendTextInputAction` is available for use since flutter#106561. Previous works has been done in flutter#131776, I merely added tests. Best regards.
adding deserialisation factory for SendTextInputAction.
Pre-launch Checklist
///).If you need help, consider asking for advice on the #hackers-new channel on Discord.