Skip to main content
Logo Appt Light

Reflow on Xamarin

Content on the screen should reflow based on the users' preferences. In landscape mode, the vertical space is much smaller compared to portrait mode. And when users have enlarged their font size, text should not get truncated. Instead, apps should adapt the interface to the available space.

When using Xamarin.Forms, your elements should be placed inside a scrollable layout, such as:

<ScrollView>
    <Label Text="Content should scroll!" />
</ScrollView>

Feedback?

Let us know!