react / react/react-native

style transform on Text component inconsistently applied on iOS

Aperta
#55,306 2 commenti 2 reazioni 0 assegnatari Vedi su GitHub

Nessuno ha ancora preso questa issue.

Needs: Triage :mag: Platform: iOS Type: New Architecture
Lingua principale
C++
Stelle
127k
Fork
25.3k
Merge medio
1g 23h
PR unite (30g)
4

Descrizione

Description

CSS transform styles applied directly to <Text> components do not work consistently on iOS. The same code works correctly on Android.

In the example snippet below:

  • Android: ✅ Text is translated as expected
  • iOS: ❌ Text is not translated
<Text style={{ transform: [{ translateY: 50 }] }}>Transformed text</Text>

Occasionally a fast refresh will correct it but that's not consistent either.

Workaround

Wrapping the <Text> in a <View> and applying the transform to the <View> works on both platforms:

<View style={{ transform: [{ translateY: 50 }] }}>
  <Text>Transformed text</Text>
</View>
Steps to reproduce
  1. Run the provided Expo Snack on an iOS device/sim
    https://snack.expo.dev/@jacob-venable-companycam/text-transform-repro
  2. Notice that the 2nd piece of text does not have the expected transform applied
React Native Version

0.81.5

Affected Platforms

Runtime - iOS

Areas

Fabric - The New Renderer

Output of npx @react-native-community/cli info
System:
  OS: macOS 26.2
  CPU: (14) arm64 Apple M4 Pro
  Memory: 501.72 MB / 48.00 GB
Binaries:
  Node:
    version: 20.19.5
    path: /.nvm/versions/node/v20.19.5/bin/node
  Yarn:
    version: 1.22.22
    path: /.nvm/versions/node/v20.19.5/bin/yarn
  npm:
    version: 10.8.2
    path: /.nvm/versions/node/v20.19.5/bin/npm
  Watchman:
    version: 2025.03.10.00
    path: /opt/homebrew/bin/watchman
Managers:
  CocoaPods: Not Found
SDKs:
  iOS SDK:
    Platforms:
      - DriverKit 25.2
      - iOS 26.2
      - macOS 26.2
      - tvOS 26.2
      - visionOS 26.2
      - watchOS 26.2
  Android SDK: Not Found
IDEs:
  Android Studio: 2025.1 AI-251.25410.109.2511.13752376
  Xcode:
    version: 26.2/17C52
    path: /usr/bin/xcodebuild
Languages:
  Java:
    version: 17.0.16
    path: /usr/bin/javac
  Ruby:
    version: 2.6.10
    path: /.rbenv/shims/ruby
npmPackages:
  "@react-native-community/cli": Not Found
  react:
    installed: 19.1.0
    wanted: 19.1.0
  react-native:
    installed: 0.81.5
    wanted: 0.81.5
  react-native-macos: Not Found
npmGlobalPackages:
  "*react-native*": Not Found
Android:
  hermesEnabled: Not found
  newArchEnabled: Not found
iOS:
  hermesEnabled: Not found
  newArchEnabled: Not found
Stacktrace or Logs
N/A
MANDATORY Reproducer

https://snack.expo.dev/@jacob-venable-companycam/text-transform-repro

Screenshots and Videos
Actual Expected
example showing text using a transform style not having the transform applied in iOS example showing text using a transform style having the transform applied in iOS as expected

Guida per i contributori

Apri la guida per i contributori

Come iniziare

  1. Leggi tutta la issue e poi la guida ai contributi del progetto.
  2. Commenta sulla issue per dire che te ne occupi tu — evita che due persone facciano lo stesso lavoro.
  3. Fai un fork del repository e lavora su un branch.
  4. Apri una pull request che faccia riferimento al numero della issue.

Direzione di ricerca

Inizia eseguendo il riproduttore Expo Snack obbligatorio su un dispositivo o simulatore iOS e confronta la trasformazione diretta di Text con la soluzione alternativa che racchiude View. Analizza il percorso Fabric/New Renderer coinvolto nel report; il lavoro è completato quando la trasformazione diretta translateY su Text viene applicata in modo coerente su iOS come su Android.

Scritto dal modello di indicizzazione a partire dal testo della issue.

Valutazione

Stack tecnologico
ios, react-native
Ambito
mobile
Tipo di issue
Bug
Difficoltà
4/5
Tempo stimato
3-5 giorni
Stato di attività
Tranquilla
Chiarezza
Abbastanza chiara
Idoneità per principianti
48/100

Ricevi le nuove issue nella tua casella

Un breve riepilogo di issue GitHub adatte ai principianti.