The Candid Startup
    Preparing search index...

    Props accepted by DisplayListItem

    interface DisplayListItemProps {
        data: unknown;
        index: number;
        isScrolling?: boolean;
        style: CSSProperties;
    }

    Hierarchy (View Summary)

    Index

    Properties

    data: unknown

    Value of DisplayBaseProps.itemData from owning component

    index: number

    Index of item in the list being rendered

    isScrolling?: boolean

    Is the owning component being actively scrolled? Used to change how the item is rendered depending on scroll state.

    Value passed through from DisplayBaseProps.isScrolling.

    style: CSSProperties

    Style that should be applied to each item rendered. Positions the item within the inner container.