Reflow - .NET MAUI

In MAUI, you can put UI elements inside a ScrollView. Other components available for dynamic UI include:

Usage (C#)

var scrollView = new ScrollView
{
    Content = new Label
    {
        Text = "Content should scroll!"
    }
};

Usage (XAML)

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