10 lines
121 B
C#
10 lines
121 B
C#
|
|
namespace Microsoft.Maui.Platform;
|
||
|
|
|
||
|
|
public enum FlexDirection
|
||
|
|
{
|
||
|
|
Row,
|
||
|
|
RowReverse,
|
||
|
|
Column,
|
||
|
|
ColumnReverse
|
||
|
|
}
|