fix(Android): onContentSizeChanged is called multiple times If TextInput is in the Modal on Fabric #47492
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Summary:
Fixes #47186
The modal size is updated asynchronously, so the Yoga doesn't know about its size on the initial render. The effect is that children of the modal are sized differently before and after the state is updated. Whenever the size of the
TextInput
changes it invokesonContentSizeChanged
callback in onLayout and we want it to happen only once.The fix introduces setting display frame sizes before the initial render in
ModalHostViewState
similarly to how it is done on iOS. I am not sure if the newgetDisplaySizes
function should be added toFabricUIManager
so I would love to get some guidance here. Also I found that there is getModalHostSize function that is not used anywhere. I've tried to use it but it returns incorrect values after rotating the phone.The same issue happens on the old architecture, but I will try to make a separate PR with the fix.
Changelog:
[ANDROID] [FIXED] -
onContentSizeChanged
callback is invoked only once onTextInput
located inside theModal
during the mounting on Fabric.Test Plan:
I've tested with enabled/disabled
statusBarTranslucent
, with rotating the phone, and on split screencode