Pilates
    Preparing search index...

    Interface ContainerNode

    interface ContainerNode {
        alignContent?: Align;
        alignItems?: Align;
        alignSelf?: Align;
        aspectRatio?: number;
        border?: BorderStyle;
        borderColor?: Color;
        children?: RenderNode[];
        display?: Display;
        flex?: number;
        flexBasis?: number | "auto";
        flexDirection?: FlexDirection;
        flexGrow?: number;
        flexShrink?: number;
        flexWrap?: FlexWrap;
        gap?: number | { column?: number; row?: number };
        height?: number | "auto";
        justifyContent?: Justify;
        margin?: EdgeValue;
        maxHeight?: number;
        maxWidth?: number;
        minHeight?: number;
        minWidth?: number;
        overflow?: Overflow;
        overflowX?: Overflow;
        overflowY?: Overflow;
        padding?: EdgeValue;
        position?: { bottom?: number; left?: number; right?: number; top?: number };
        positionType?: PositionType;
        scrollLeft?: number;
        scrollTop?: number;
        title?: string;
        titleColor?: Color;
        width?: number | "auto";
    }

    Hierarchy (View Summary)

    Index

    Properties

    alignContent?: Align
    alignItems?: Align
    alignSelf?: Align
    aspectRatio?: number

    width / height ratio. When set and exactly one of width / height is a number (the other being 'auto' or unset), the auto axis is derived as set / aspectRatio (height) or set * aspectRatio (width). Both axes explicit ⇒ ratio is ignored.

    border?: BorderStyle
    borderColor?: Color
    children?: RenderNode[]

    Children of this container.

    display?: Display
    flex?: number
    flexBasis?: number | "auto"
    flexDirection?: FlexDirection
    flexGrow?: number
    flexShrink?: number
    flexWrap?: FlexWrap
    gap?: number | { column?: number; row?: number }
    height?: number | "auto"
    justifyContent?: Justify
    margin?: EdgeValue
    maxHeight?: number
    maxWidth?: number
    minHeight?: number
    minWidth?: number
    overflow?: Overflow
    overflowX?: Overflow
    overflowY?: Overflow
    padding?: EdgeValue
    position?: { bottom?: number; left?: number; right?: number; top?: number }
    positionType?: PositionType
    scrollLeft?: number

    Initial scroll offset; <ScrollView> typically owns this via mutation.

    scrollTop?: number
    title?: string

    A short string rendered inline at the top border. Truncated to fit.

    titleColor?: Color
    width?: number | "auto"