class MessageDialogStyles
A class that defines the styles for the default modal message dialog view.
class MessageDialogStyles
Notes
- A default instance of this class is created, and can be modified in the WebContextOptions configuration callback passed to useWebContext.
- These styles are used by the default message dialog view referenced by the UITheme implementation — and therefore also by app.showAlertDialogAsync() and app.showConfirmDialogAsync().
- The default dialog view includes an outer container, a block of message labels, and a block of buttons.
Instance Members
- containerVariantThe cell variant (and style) used for the outer dialog container.
- messageCellVariantThe cell variant used for the block of messages.
- buttonCellVariantThe cell variant used for the block of buttons.
- buttonRowLayoutOptions for the layout of the row of buttons.
- reverseButtonsTrue if the buttons should be shown in reverse order.
- firstLabelStyleThe label style used for the first message label.
- labelStyleThe label style used for all labels except the first.
- buttonStyleThe button style used for all buttons except the confirm button.
- confirmButtonStyleThe button style used for the confirm button.
Related
- class WebContextOptionsA class that contains options for the web context.
- interface UITheme.ModalControllerFactory staticAn interface that defines methods for creating modal views.