Position
public enum Position
-
Default value. Positioned according to the flex container's flow. The item is positioned using Insets properties (top, bottom, left, right, start, end) from its normal position within its flex container and will take up space within the flex container. This node will always form a containing block.
Declaration
Swift
case relative
-
Positioned absolutely, removed from the flex container's flow. The item is positioned using Insets properties (top, bottom, left, right, start, end). Insets will offset the node from its containing block.
Declaration
Swift
case absolute
-
Positioned like relative but ignores insets and will not form a containing block.
Declaration
Swift
case static