Remove useWindowDimensions from ProfileBadges (#10738)

This commit is contained in:
Samuel Newman
2026-06-06 00:17:05 +03:00
committed by GitHub
parent a5338090cb
commit ac63ee7739
2 changed files with 22 additions and 2 deletions
+19
View File
@@ -0,0 +1,19 @@
import {useEffect, useState} from 'react'
import {Dimensions} from 'react-native'
/**
* Same as `useWindowDimensions().fontScale`, but avoids rerendering
* whenever the screen size changes
*/
export function useNativeFontScale() {
const [fontScale, setFontScale] = useState(Dimensions.get('window').fontScale)
useEffect(() => {
const sub = Dimensions.addEventListener('change', evt => {
setFontScale(evt.window.fontScale)
})
return () => sub.remove()
}, [])
return fontScale
}