using System; namespace KamiToolKit.Enums; [Flags] public enum FlexFlags { /// /// Adjusts the height of the inserted node to be the same as the area generated /// FitHeight = 1 << 0, /// /// Adjusts the width of the inserted node to be the same as the area generated /// FitWidth = 1 << 1, /// /// Adjusts the FlexNode's height to fit the nodes that are inserted into it /// FitContentHeight = 1 << 3, /// /// Center inserted nodes into the middle of the flex area horizontally /// CenterVertically = 1 << 4, /// /// Center inserted nodes into the middle of the flex area vertically /// CenterHorizontally = 1 << 5, }