Reflow - .NET MAUI
In MAUI, you can put UI elements inside a ScrollView
. Other components available for dynamic UI include:
CollectionView
: for multi dimensional contentListView
: for one dimensional contentWebView
: for web content
Usage (C#)
var scrollView = new ScrollView
{
Content = new Label
{
Text = "Content should scroll!"
}
};
Usage (XAML)
<ScrollView>
<Label Text="Content should scroll!" />
</ScrollView>