12 lines
148 B
C#
12 lines
148 B
C#
|
|
namespace Microsoft.Maui.Platform;
|
||
|
|
|
||
|
|
public enum FlexAlignContent
|
||
|
|
{
|
||
|
|
Start,
|
||
|
|
Center,
|
||
|
|
End,
|
||
|
|
Stretch,
|
||
|
|
SpaceBetween,
|
||
|
|
SpaceAround
|
||
|
|
}
|