Interface ConfirmationDialogConfiguration

Confirmation Dialog configuration

interface ConfirmationDialogConfiguration {
    confirmButtonFilled: boolean;
    confirmButtonFilledTextColor: string;
    confirmButtonTitle: string;
    confirmationDialogConfirmButtonStyle: DialogButtonStyle;
    confirmationDialogRetryButtonStyle: DialogButtonStyle;
    confirmationDialogStyle: DialogStyle;
    dialogButtonsAccentColor: string;
    dialogMessage: string;
    dialogTextFormat: BarcodeDialogFormat;
    dialogTitle: string;
    resultWithConfirmationEnabled: boolean;
    retryButtonTitle: string;
}

Properties

confirmButtonFilled: boolean

Allows to set if the confirm button should be filled. Defaults to TRUE. Android only.

confirmButtonFilledTextColor: string

Allows to set a text color of the filled button. See confirmationDialogConfirmButtonFilled. Android only.

confirmButtonTitle: string

The title of the confirmation dialog confirm button.

confirmationDialogConfirmButtonStyle: DialogButtonStyle

The style of the confirmation dialogs confirm button. iOS only.

confirmationDialogRetryButtonStyle: DialogButtonStyle

The style of the confirmation dialogs retry button. iOS only.

confirmationDialogStyle: DialogStyle

The style of the confirmation dialog. iOS only.

dialogButtonsAccentColor: string

The accent color of buttons on a confirmation dialog. Android only.

dialogMessage: string

The message text of the confirmation dialog.

dialogTextFormat: BarcodeDialogFormat

The text format of the result dialog. Defaults to TYPE_AND_CODE.

dialogTitle: string

The title of the confirmation dialog.

resultWithConfirmationEnabled: boolean

Defines, if the confirmation dialog should be displayed or not before returing the results to the delegate. Defaults to False.

retryButtonTitle: string

The title of the confirmation dialog retry button.