type Layout
Options for layout of components within a container.
static
type Layout = {
axis?: "horizontal" | "vertical" | "";
distribution?: "start" | "end" | "center" | "fill" | "space-around" | "";
gravity?: "start" | "end" | "center" | "stretch" | "baseline" | "";
wrapContent?: boolean;
clip?: boolean;
separator?: Readonly<SeparatorOptions>;
}Related
- class UIContainer abstractA base view class that represents a container component with no specific layout or styling.
