interface SubMenuButtonProps {
    label: string;
    menuConstructor: MenuConstructor;
    preview: string;
    style?: StyleProp<ViewStyle>;
    textStyle?: StyleProp<TextStyle>;
}

Properties

label: string

The label for the sub menu button.

menuConstructor: MenuConstructor

The sub menu that will be opened.

preview: string

A preview for the currently selected value before opening the sub menu.

The style overrides.

textStyle?: StyleProp<TextStyle>

The style overrides for the text components.

Generated using TypeDoc