.NET MAUI WrapLayout Overview
The Telerik UI for .NET MAUI WrapLayout provides a mechanism for arranging child elements in rows or columns depending on the Orientation
property. When the available space is filled, the control wraps these elements on а new row or column.
Key Features of the .NET MAUI WrapLayout
-
Wrap orientation—Through the
Orientation
property you can control whether the child items of the WrapLayout will be wrapped in rows (horizontal orientation) or in columns (vertical orientation). -
Items size—The WrapLayout exposes the
ItemWidth
andItemHeight
properties, which let you specify the size of the child elements. -
Last child item stretch—You can control the last child element position through the
StretchLastChild
property of the WrapLayout. If set toTrue
, the last element will stretch along the available space from the last row or column depending on the layout orientation.