-
Notifications
You must be signed in to change notification settings - Fork 24.4k
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
feat(android): height issue fixed with keyboard avoiding component in new architecture #45928
feat(android): height issue fixed with keyboard avoiding component in new architecture #45928
Conversation
Can confirm that without this fix, is completely broken on android new arch. |
@cortinico has imported this pull request. If you are a Meta employee, you can view this diff on Phabricator. |
@cortinico merged this pull request in 603eb94. |
This pull request was successfully merged by @shubhamguptadream11 in 603eb94 When will my fix make it into a release? | How to file a pick request? |
… new architecture (#45928) Summary: Fixes this issue: #45880 ## Changelog: <!-- Help reviewers and the release process by writing your own changelog entry. Pick one each for the category and type tags: [ANDROID] [CHANGED] - Message For more details, see: https://reactnative.dev/contributing/changelogs-in-pull-requests --> [ANDROID] [CHANGED] - Replaced `mLastHeight` with `mVisibleViewArea.height()` since mLastHeight value is not getting updated. For `width` we are already using `mVisibleViewArea.width()` Pull Request resolved: #45928 Test Plan: - Tested the fix in new and old architecture both Reviewed By: christophpurrer Differential Revision: D61023998 Pulled By: cortinico fbshipit-source-id: df67616330effb7b9e6724d94b3be92c0dbd6190
This pull request was successfully merged by @shubhamguptadream11 in 1cea8e8. When will my fix make it into a release? | How to file a pick request? |
Summary:
Fixes this issue: #45880
Changelog:
[ANDROID] [CHANGED] - Replaced
mLastHeight
withmVisibleViewArea.height()
since mLastHeight value is not getting updated. Forwidth
we are already usingmVisibleViewArea.width()
Test Plan: