Configuration of the 'select camera' menu.

Hierarchy

  • PartiallyConstructible
    • SelectCameraMenu

Constructors

  • Parameters

    • Optional source: DeepPartial<SelectCameraMenu>

    Returns SelectCameraMenu

Properties

backgroundColor: string

The background color of the 'select camera' menu.

Default Value

"?sbColorSurface";
button: IconButton

Configuration of the icon that toggles the 'select camera' menu.

Default Value

new IconButton({
"color": "?sbColorOnPrimary",
"accessibilityDescription": "?accessibilityDescriptionCameraSelectButton"
});
dividerColor: string

The color of the divider that separates the 'select camera' title from the menu items.

Default Value

"?sbColorOutline";
menuEntry: PopupMenuItem

Configuration of the menu items in the 'select camera' menu.

Default Value

new PopupMenuItem({
"title": new StyledText({
"color": "?sbColorOnSurface"
}),
"accessibilityDescription": "?accessibilityDescriptionCameraSelectMenuItem",
"icon": new IconStyle({
"color": "?sbColorOnSurface"
})
});
menuEntryActive: PopupMenuItem

Configuration of the active menu items in the 'select camera' menu.

Default Value

new PopupMenuItem({
"title": new StyledText({
"color": "?sbColorPrimary"
}),
"accessibilityDescription": "?accessibilityDescriptionCameraSelectMenuItem",
"icon": new IconStyle({
"color": "?sbColorPrimary"
})
});
title: StyledText

Configuration of the title of the 'select camera' menu.

Default Value

new StyledText({
"text": "?cameraSelectCameraMenuTitle",
"color": "?sbColorOnSurfaceVariant"
});

Generated using TypeDoc