Skip to main content
Logo Appt Light

Text truncation on Xamarin

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.

When using Xamarin.Forms, you can avoid text truncation by removing all instances of MaxLines from your app.

<Label
    Text="Avoid text truncation"
    MaxLines="REMOVE" />

Feedback?

Let us know!