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

Update notice_dialog_widget.dart

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