Revert "fix: text ui scaling"

This reverts commit 9c0de94247.
This commit is contained in:
Lance Chant
2026-02-13 16:30:36 +02:00
committed by Gauvain
parent 719c875293
commit ce1e1dfc77
14 changed files with 27 additions and 70 deletions

View File

@@ -4,7 +4,7 @@ export function Text(props: TextProps) {
if (Platform.isTV)
return (
<RNText
maxFontSizeMultiplier={1.3}
allowFontScaling={false}
style={[{ color: "white" }, style]}
{...otherProps}
/>
@@ -12,7 +12,7 @@ export function Text(props: TextProps) {
return (
<RNText
maxFontSizeMultiplier={1.3}
allowFontScaling={false}
style={[{ color: "white" }, style]}
{...otherProps}
/>