Type alias TabListProps

TabListProps: {
    animated?: boolean;
    disableScroll?: boolean;
    icons?: any;
    layout?: "bottom" | "top" | "left" | "right";
    onSelect?: ((index) => void);
    scrollButtonProps?: ButtonProps;
    scrollJump?: number;
    selected?: number;
    stretch?: boolean;
} & Omit<CoreViewProps, "onSelect">

Type declaration

  • Optional animated?: boolean
  • Optional disableScroll?: boolean
  • Optional icons?: any
  • Optional layout?: "bottom" | "top" | "left" | "right"
  • Optional onSelect?: ((index) => void)
      • (index): void
      • Parameters

        • index: number

        Returns void

  • Optional scrollButtonProps?: ButtonProps
  • Optional scrollJump?: number
  • Optional selected?: number
  • Optional stretch?: boolean

Generated using TypeDoc