Class ReviewBottomBarConfiguration

Configuration of the bottom bar for the review screen.

Hierarchy

  • PartiallyConstructible
    • ReviewBottomBarConfiguration

Constructors

Properties

Configuration of the 'add' button, located in the bottom bar.

Default Value

new BarButtonConfiguration({
"title": new StyledText({
"text": "?reviewScreenAddButtonTitle",
"color": "?sbColorOnPrimary"
}),
"accessibilityDescription": "?accessibilityDescriptionReviewAddButton",
"background": new BackgroundStyle({
"strokeColor": "#00000000",
"fillColor": "#00000000",
"strokeWidth": 0.0
}),
"icon": new IconStyle({
"color": "?sbColorOnPrimary"
})
});

Configuration of the 'crop' button, located in the bottom bar.

Default Value

new BarButtonConfiguration({
"title": new StyledText({
"text": "?reviewScreenCropButtonTitle",
"color": "?sbColorOnPrimary"
}),
"accessibilityDescription": "?accessibilityDescriptionReviewCropButton",
"background": new BackgroundStyle({
"strokeColor": "#00000000",
"fillColor": "#00000000",
"strokeWidth": 0.0
}),
"icon": new IconStyle({
"color": "?sbColorOnPrimary"
})
});

Configuration of the 'delete' button, located in the bottom bar.

Default Value

new BarButtonConfiguration({
"title": new StyledText({
"text": "?reviewScreenDeleteButtonTitle",
"color": "?sbColorOnPrimary"
}),
"accessibilityDescription": "?accessibilityDescriptionReviewDeleteButton",
"background": new BackgroundStyle({
"strokeColor": "#00000000",
"fillColor": "#00000000",
"strokeWidth": 0.0
}),
"icon": new IconStyle({
"color": "?sbColorOnPrimary"
})
});

Configuration of the 'retake' button, located in the bottom bar.

Default Value

new BarButtonConfiguration({
"title": new StyledText({
"text": "?reviewScreenRetakeButtonTitle",
"color": "?sbColorOnPrimary"
}),
"accessibilityDescription": "?accessibilityDescriptionReviewRetakeButton",
"background": new BackgroundStyle({
"strokeColor": "#00000000",
"fillColor": "#00000000",
"strokeWidth": 0.0
}),
"icon": new IconStyle({
"color": "?sbColorOnPrimary"
})
});

Configuration of the 'rotate' button, located in the bottom bar.

Default Value

new BarButtonConfiguration({
"title": new StyledText({
"text": "?reviewScreenRotateButtonTitle",
"color": "?sbColorOnPrimary"
}),
"accessibilityDescription": "?accessibilityDescriptionReviewRotateButton",
"background": new BackgroundStyle({
"strokeColor": "#00000000",
"fillColor": "#00000000",
"strokeWidth": 0.0
}),
"icon": new IconStyle({
"color": "?sbColorOnPrimary"
})
});
submitButton: ButtonConfiguration

Configuration of the 'submit' button, located in the bottom bar.

Default Value

new ButtonConfiguration({
"text": "?reviewScreenSubmitButtonTitle",
"accessibilityDescription": "?accessibilityDescriptionReviewSubmitButton",
"background": new BackgroundStyle({
"strokeColor": "?sbColorSurface",
"fillColor": "?sbColorSurface",
"strokeWidth": 0.0
}),
"foreground": new ForegroundStyle({
"color": "?sbColorOnSurface"
})
});

Generated using TypeDoc