Optional
source: DeepPartial<ScanbotAlertDialog>Configuration of the middle button for dialogs with tree buttons.
new ButtonConfiguration({
"visible": false,
"background": new BackgroundStyle({
"strokeColor": "#00000000",
"fillColor": "#00000000",
"strokeWidth": 0.0
})
});
Configuration of the 'cancel' button.
new ButtonConfiguration({
"visible": true,
"background": new BackgroundStyle({
"strokeColor": "#00000000",
"fillColor": "#00000000",
"strokeWidth": 0.0
})
});
The color of the divider line.
"?sbColorOutline";
The dialog overlay color.
"?sbColorModalOverlay";
Configuration of the 'OK' button.
new ButtonConfiguration({
"background": new BackgroundStyle({
"fillColor": "?sbColorPrimary"
})
});
The background color of the alert dialog.
"?sbColorSurface";
The explanation message.
new StyledText({
"text": "Standard explanation message text.",
"color": "?sbColorOnSurfaceVariant"
});
The title displayed above the message.
new StyledText({
"text": "Title",
"color": "?sbColorOnSurface"
});
Generated using TypeDoc
Configuration of the standard alert dialog.