@moxijs/ui - v0.3.5
    Preparing search index...

    Interface FlexContainerProps

    FlexContainer configuration.

    interface FlexContainerProps {
        align?: FlexAlign;
        backgroundColor?: number;
        debug?: boolean;
        direction?: FlexDirection;
        fontConfig?: UIFontConfig;
        gap?: number;
        height?: number | "fill";
        justify?: FlexJustify;
        padding?: EdgeInsets;
        width?: number | "fill";
        wrap?: boolean;
    }
    Index

    Properties

    align?: FlexAlign
    backgroundColor?: number

    Background color for the container

    debug?: boolean

    Enable visual debugging to show layout bounds and structure

    direction?: FlexDirection
    fontConfig?: UIFontConfig

    Font configuration that children will inherit (like CSS)

    gap?: number
    height?: number | "fill"
    justify?: FlexJustify
    padding?: EdgeInsets
    width?: number | "fill"
    wrap?: boolean