Add preview for dialog with a third button

This commit is contained in:
Benoit Marty
2023-11-02 14:13:44 +01:00
parent f4539c321d
commit 48aeee8dfe

View File

@@ -485,7 +485,6 @@ internal fun DialogWithOnlyMessageAndOkButtonPreview() {
@Preview(group = PreviewGroup.Dialogs, name = "Dialog with destructive button")
@Composable
@Suppress("MaxLineLength")
internal fun DialogWithDestructiveButtonPreview() {
ElementThemedPreview(showBackground = false) {
DialogPreview {
@@ -500,3 +499,20 @@ internal fun DialogWithDestructiveButtonPreview() {
}
}
}
@Preview(group = PreviewGroup.Dialogs, name = "Dialog with third button")
@Composable
internal fun DialogWithThirdButtonPreview() {
ElementThemedPreview(showBackground = false) {
DialogPreview {
SimpleAlertDialogContent(
title = "Dialog Title",
content = "A dialog with a third button",
cancelText = "Cancel",
submitText = "Delete",
thirdButtonText = "Other",
onSubmitClicked = {},
)
}
}
}