Type alias ActionSheetProps

ActionSheetProps: {
    body?: string;
    cancelButtonIndex: number;
    forceCustomActionSheet?: boolean;
    fullBleed?: boolean;
    items: ActionSheetItem[];
    open: boolean;
    title: string;
}

Props for ActionSheet component

Type declaration

  • Optional body?: string

    Body to show

  • cancelButtonIndex: number

    Cancel button index (index of where cancel button lives)

  • Optional forceCustomActionSheet?: boolean

    Force use of the custom action sheet (even if System is supported)

  • Optional fullBleed?: boolean

    Indicate that Action Sheet should go full bleed

  • items: ActionSheetItem[]

    Items to render

  • open: boolean

    Indicate if should open (can only open post render; must render then set state)

  • title: string

    Title to show

Generated using TypeDoc