Type alias TopNavigationBarProps

TopNavigationBarProps: {
    additionalHeaderContent?: React.ReactNode;
    componentProps?: ViewProps;
    headerMode?: boolean;
    leftItems?: NavigationButton[];
    leftLink?: LinkProps;
    rightItems?: NavigationButton[];
    rightLink?: LinkProps;
    style?: StyleProp<ViewStyle>;
    subTitle?: string;
    title: string;
}

Props for TopNavigationBar component

Type declaration

  • Optional additionalHeaderContent?: React.ReactNode

    Additional components to load into the header (useful for like Search or tabs)

  • 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 headerMode?: boolean

    Indicate if header mode for title should be used (larger page header)

  • Optional leftItems?: NavigationButton[]

    Left navigation items to load (will not be loaded if leftLink is used). Do not use more than 2 or can get funky looking.

  • Optional leftLink?: LinkProps

    Left link to load

  • Optional rightItems?: NavigationButton[]

    Right navigation items to load (will not be loaded if rightLink is used). Do not use more than 2 or can get funky looking.

  • Optional rightLink?: LinkProps

    Right link to load

  • Optional style?: StyleProp<ViewStyle>

    Style to set on the item

  • Optional subTitle?: string

    Sub title to use

  • title: string

    Title to show

Generated using TypeDoc