Files
maui-linux/Types/FlexAlignContent.cs
2026-01-17 00:46:27 +00:00

17 lines
320 B
C#

namespace Microsoft.Maui.Platform;
/// <summary>
/// Specifies how flex lines are aligned within the flex container.
/// Matches Microsoft.Maui.Layouts.FlexAlignContent enum.
/// </summary>
public enum FlexAlignContent
{
Start,
Center,
End,
Stretch,
SpaceBetween,
SpaceAround,
SpaceEvenly
}