This commit is contained in:
2026-01-17 00:46:27 +00:00
parent 27e2dc7136
commit 7a1241cbf2
3 changed files with 141 additions and 5 deletions

View File

@@ -1,5 +1,9 @@
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,
@@ -7,5 +11,6 @@ public enum FlexAlignContent
End,
Stretch,
SpaceBetween,
SpaceAround
SpaceAround,
SpaceEvenly
}