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

    Interface FlexContainerPanelProps

    FlexContainerPanel configuration. Combines FlexContainer layout with panel features (background, border, clipping).

    interface FlexContainerPanelProps {
        align?: FlexAlign;
        backgroundAlpha?: number;
        backgroundColor?: number;
        borderColor?: number;
        borderRadius?: number;
        borderWidth?: number;
        clipContent?: boolean;
        direction?: FlexDirection;
        fontConfig?: UIFontConfig;
        gap?: number;
        height?: number;
        justify?: FlexJustify;
        padding?: EdgeInsets;
        width?: number;
    }
    Index

    Properties

    align?: FlexAlign

    Cross axis alignment

    backgroundAlpha?: number

    Background alpha (0-1)

    backgroundColor?: number

    Background color

    borderColor?: number

    Border color

    borderRadius?: number

    Border radius

    borderWidth?: number

    Border width

    clipContent?: boolean

    Clip children to panel bounds

    direction?: FlexDirection

    Flex direction

    fontConfig?: UIFontConfig

    Font configuration for children to inherit

    gap?: number

    Gap between children

    height?: number

    Panel height

    justify?: FlexJustify

    Main axis alignment

    padding?: EdgeInsets

    Inner padding

    width?: number

    Panel width