Skip to content
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
wants to merge 4 commits into
base: main
Choose a base branch
from

Conversation

j-piasecki
Copy link
Contributor

@j-piasecki j-piasecki commented Aug 12, 2024

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 and TextInput) 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 the fontScaleMultiplier 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 using DisplayMetrics. The display metrics weren't updated on the font scale change, which is the first thing this PR is addressing by adding checkForFontScaleChanges to ReactRootView.
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. Since fontScaleMultiplier 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:

function App() {
  const [counter,setCounter] = useState(0);
  const [text,setText] = useState('TextInput');
  const [flag,setFlag] = useState(true);

  return (
    <SafeAreaView
        style={{
          flex: 1,
          backgroundColor: '#fff',
          alignItems: 'center',
          justifyContent: 'center',
        }}
    >
      <Text style={{fontSize: 24}}>RN 24 Label Testing {flag ? 'A' : 'B'}</Text>
      <TextInput value={text} onChangeText={setText} style={{fontSize: 24, borderWidth: 1}} placeholder="Placeholder" />
      <Pressable onPress={() => setCounter(prevState => prevState + 1)} style={{backgroundColor: counter % 2 === 0 ? 'red' : 'blue', width: 200, height: 50}} />
      <Pressable onPress={() => setFlag(!flag)} style={{backgroundColor: 'green', width: 200, height: 50}} />
    </SafeAreaView>
  );
}

@facebook-github-bot facebook-github-bot added 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 labels Aug 12, 2024
@j-piasecki j-piasecki force-pushed the @jpiasecki/fix-font-scaling branch from 7c19db4 to 257a501 Compare March 10, 2025 15:05
@j-piasecki j-piasecki force-pushed the @jpiasecki/fix-font-scaling branch from 257a501 to d72c6d3 Compare March 21, 2025 14:38
@j-piasecki j-piasecki force-pushed the @jpiasecki/fix-font-scaling branch from d72c6d3 to 861b708 Compare March 21, 2025 14:40
@j-piasecki j-piasecki marked this pull request as ready for review March 24, 2025 10:10
@facebook-github-bot
Copy link
Contributor

@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
Projects
None yet
Development

Successfully merging this pull request may close these issues.

[iOS] increasing font scale (content size catgory) breaks text
3 participants