Configuration of the bottom bar for the acknowledgement screen.

Hierarchy

  • PartiallyConstructible
    • AcknowledgementBottomBar

Constructors

Properties

acceptWhenNotOkButton: BarButtonConfiguration

Configuration of the 'accept' button, when the quality of the scanned page is unacceptable.

Default Value

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

Configuration of the 'accept' button, when the quality of the scanned page is acceptable.

Default Value

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

Configuration of the 'retake' button.

Default Value

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

Generated using TypeDoc