Type alias DataTableHeaderProps

DataTableHeaderProps: {
    componentProps?: ViewProps;
    primaryAction?: ButtonProps;
    secondaryActions?: ButtonProps[];
    style?: StyleProp<ViewStyle>;
}

Props for DataTableHeader component

Type declaration

  • Optional componentProps?: ViewProps

    Direct props to set on the React Native component (including iOS and Android specific props). Most use cases should not need this.

  • Optional primaryAction?: ButtonProps

    Primary action to render (right side action)

  • Optional secondaryActions?: ButtonProps[]

    Secondary actions to render (left side action. Should only be icons normally. But not limited). If kind and overrideColor are not set will auto set to best combo for tables.

  • Optional style?: StyleProp<ViewStyle>

    Style to set on the item

Generated using TypeDoc