Skip to main content
Logo Appt Light

Text truncation on React Native

Text should never get truncated in your app, even when users have enlarged their font size. Instead, apps should adapt the interface to the available space.

In React Native, you can avoid text truncation by removing all instances of numberOfLines from you rapp.

<Text numberOfLines="{REMOVE}">
    Avoid text truncation
</Text>

Feedback?

Let us know!