Type alias TabsProps

TabsProps: {
    animated?: boolean;
    layout?: "bottom" | "top" | "left" | "right";
    onSelect?: ((index) => void);
    selected: number;
} & Omit<CoreViewProps, "onSelect">

Type declaration

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

        • index: number

        Returns void

  • selected: number

Generated using TypeDoc