interface MenuButtonProps {
    icon?: ImageSourcePropType;
    menuConstructor?: MenuConstructor;
    style?: StyleProp<ViewStyle>;
    svg?: ReactNode;
}

Properties

The image that will be used in the button.

menuConstructor?: MenuConstructor

The menu that will be constructed when the button is pressed.

The style overrides for the menu button.

svg?: ReactNode

The SVG that will be used in the button. Takes priority over images.

Generated using TypeDoc