提交 20a523d3 authored 作者: 张国庆's avatar 张国庆

Update notice_dialog_widget.dart

增加自定义回调
上级 1883a424
......@@ -15,6 +15,8 @@ class NoticeDialogWidget extends GetView<NoticeDialogWidgetController> {
this.confirmText,
this.cancelType,
this.confirmType,
this.cancelCallback,
this.confirmCallback,
required this.buttonColor,
});
......@@ -31,6 +33,11 @@ class NoticeDialogWidget extends GetView<NoticeDialogWidgetController> {
// 确认按钮类型
final ButtonPublicType? confirmType;
// 取消按钮回调
final VoidCallback? cancelCallback;
// 确认按钮回调
final VoidCallback? confirmCallback;
// 按钮颜色
final Color buttonColor;
......@@ -78,7 +85,8 @@ class NoticeDialogWidget extends GetView<NoticeDialogWidgetController> {
buttonColor: buttonColor,
type: cancelType ?? ButtonPublicType.outline,
text: cancelText ?? '忽略',
onPressed: controller.ignore,
onPressed:
cancelCallback ?? controller.ignore,
borderRadius: 8,
),
),
......@@ -88,10 +96,11 @@ class NoticeDialogWidget extends GetView<NoticeDialogWidgetController> {
buttonColor: buttonColor,
type: confirmType ?? ButtonPublicType.solid,
text: confirmText ?? '去处理',
onPressed: () {
controller.gotoDealMessage(message);
controller.ignore();
},
onPressed: confirmCallback ??
() {
controller.gotoDealMessage(message);
controller.ignore();
},
borderRadius: 8,
),
)
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论