12 lines
147 B
C#
12 lines
147 B
C#
|
|
namespace Microsoft.Maui.Platform;
|
||
|
|
|
||
|
|
public enum FlexJustify
|
||
|
|
{
|
||
|
|
Start,
|
||
|
|
Center,
|
||
|
|
End,
|
||
|
|
SpaceBetween,
|
||
|
|
SpaceAround,
|
||
|
|
SpaceEvenly
|
||
|
|
}
|