-
Notifications
You must be signed in to change notification settings - Fork 24.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
Fix changing font scale breaking text #45978
Open
j-piasecki
wants to merge
4
commits into
facebook:main
Choose a base branch
from
j-piasecki:@jpiasecki/fix-font-scaling
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
j-piasecki
commented
Aug 12, 2024
packages/react-native/ReactCommon/react/renderer/components/view/YogaLayoutableShadowNode.cpp
Outdated
Show resolved
Hide resolved
packages/react-native/ReactCommon/react/renderer/mounting/ShadowTree.cpp
Outdated
Show resolved
Hide resolved
cipolleschi
reviewed
Aug 13, 2024
packages/react-native/ReactCommon/react/renderer/components/view/YogaLayoutableShadowNode.cpp
Outdated
Show resolved
Hide resolved
packages/react-native/ReactCommon/react/renderer/components/view/YogaLayoutableShadowNode.cpp
Outdated
Show resolved
Hide resolved
packages/react-native/ReactCommon/react/renderer/mounting/ShadowTree.cpp
Outdated
Show resolved
Hide resolved
7c19db4
to
257a501
Compare
257a501
to
d72c6d3
Compare
d72c6d3
to
861b708
Compare
@coado has imported this pull request. If you are a Meta employee, you can view this diff on Phabricator. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
CLA Signed
This label is managed by the Facebook bot. Authors need to sign the CLA before a PR can be reviewed.
p: Software Mansion
Partner: Software Mansion
Partner
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 #45857
General idea behind this PR is the same for both platforms: listen for the system font scale change and update the state of components displaying text (
Text
andTextInput
) in a way that will dirty their layout. This will cause Yoga to measure them again using the new font scale and update layout if necessary. I'm not convinced about using native state to accomplish this, but I don't see any other simple way to cause a shadow tree commit from the host view.On iOS this is achieved using
traitCollectionDidChange
listener, which then updates the native state. Since thefontScaleMultiplier
is already updated on iOS this is enough to fix the problem there.On Android the problem is more complicated:
fontScaleMultiplier
is not set/used at all, instead text measurement is done entirely on the host side usingDisplayMetrics
. The display metrics weren't updated on the font scale change, which is the first thing this PR is addressing by addingcheckForFontScaleChanges
toReactRootView
.The second thing is analogous to iOS - it uses a broadcast receiver to listen for
ACTION_CONFIGURATION_CHANGED
, which in turn triggers the native state update dirtying the shadow nodes displaying text. On Android, it's also necessary to clean the text measurement caches. SincefontScaleMultiplier
doesn't change, the cache keys are constant between changes to the system font scale, which causes wrong measurements being reused.The Android part needs some polishing - the broadcast receiver shouldn't be necessary at all, since the update could be triggered inside the
checkForFontScaleChanges
method, but that may be tricky to figure out due to timings of when the views are mounted/unmounted. Before digging more into this I wanted to make sure this approach is acceptable.Changelog:
[GENERAL] [FIXED] - Fixed text not updating correctly after changing font scale in settings
Test Plan:
So far tested on the following code: