# Functions
Anchor returns a layout that positions elements relative to key positions of the receiver element: - left padding border - right padding border - top padding border - bottom padding border - horizontal center - vertical center
The exact positioning of a child is determined by its layout data.
ElementData returns the layout data associated with the specified element.
Fill returns a layout that positions elements within the whole bounds of the receiver element.
Frame returns a layout that positions elements around a frame (like a picture frame).
Horizontal returns a layout that positions elements horizontally, in a sequence.
Vertical returns a layout that positions elements vertically, in a sequence.
# Constants
HorizontalAlignmentCenter indicates that the receiver should try and center the content horizontally.
HorizontalAlignmentDefault indicates that the receiver should use its preferred alignment model.
HorizontalAlignmentLeft indicates that the receiver should try and position the content to the left.
HorizontalAlignmentRight indicates that the receiver should try and position the content to the right.
VerticalAlignmentBottom indicates that the receiver should try and position the content to the bottom.
VerticalAlignmentCenter indicates that the receiver should try and center the content vertically.
VerticalAlignmentDefault indicates that the receiver should use its preferred alignment model.
VerticalAlignmentTop indicates that the receiver should try and position the content to the top.
# Structs
Data represents a layout configuration for a component that is added to a layout container.
FrameSettings contains configurations for the Frame layout.
HorizontalSettings contains configurations for the Horizontal layout.
VerticalSettings contains configurations for the Vertical layout.
# Type aliases
HorizontalAlignment determines the horizontal relative positioning of child elements within a Layout or text within a component.
VerticalAlignment determines the vertical relative positioning of child elements within a Layout or text within a component.