Type alias WebHeaderProps

WebHeaderProps: {
    actions?: WebHeaderAction[];
    componentProps?: ViewProps;
    mainName: string;
    secondaryName: string;
    style?: StyleProp<ViewStyle>;
}

Props for WebHeader component

Type declaration

  • Optional actions?: WebHeaderAction[]

    actions to render to the right side

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

  • mainName: string

    Name to show first

  • secondaryName: string

    Secondary name to show after mainName (in bold)

  • Optional style?: StyleProp<ViewStyle>

    Style to set on the item

Generated using TypeDoc