Type alias TopNavigationBarLoginProps

TopNavigationBarLoginProps: {
    backOnPress?: ((event) => void);
    backText?: string;
    componentProps?: ViewProps;
    rightItems?: NavigationButton[];
    rightLink?: LinkProps;
    style?: StyleProp<ViewStyle>;
    subTitle?: string | React.ReactNode;
    title: string;
}

Props for TopNavigationBarLogin component

Type declaration

  • Optional backOnPress?: ((event) => void)
      • (event): void
      • On press event for back button

        Parameters

        • event: GestureResponderEvent

        Returns void

  • Optional backText?: string

    Text for back button (this will auto style. This shoudl be Back or Prior_page_name depending on context. See design file for usage.)

  • 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 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 | React.ReactNode

    Sub title to use. This can include links by padding ReactNode. Normally body-compact-02 styling if using ReactNode

  • title: string

    Title to show

Generated using TypeDoc