提交 3b1d2391 authored 作者: 张国庆's avatar 张国庆

Update notice_dialog_widget.dart

修改点击处理按钮对话框隐藏逻辑
上级 20a523d3
...@@ -85,8 +85,13 @@ class NoticeDialogWidget extends GetView<NoticeDialogWidgetController> { ...@@ -85,8 +85,13 @@ class NoticeDialogWidget extends GetView<NoticeDialogWidgetController> {
buttonColor: buttonColor, buttonColor: buttonColor,
type: cancelType ?? ButtonPublicType.outline, type: cancelType ?? ButtonPublicType.outline,
text: cancelText ?? '忽略', text: cancelText ?? '忽略',
onPressed: onPressed: () {
cancelCallback ?? controller.ignore, if (cancelCallback != null) {
cancelCallback?.call();
} else {
controller.ignore;
}
},
borderRadius: 8, borderRadius: 8,
), ),
), ),
...@@ -96,11 +101,15 @@ class NoticeDialogWidget extends GetView<NoticeDialogWidgetController> { ...@@ -96,11 +101,15 @@ class NoticeDialogWidget extends GetView<NoticeDialogWidgetController> {
buttonColor: buttonColor, buttonColor: buttonColor,
type: confirmType ?? ButtonPublicType.solid, type: confirmType ?? ButtonPublicType.solid,
text: confirmText ?? '去处理', text: confirmText ?? '去处理',
onPressed: confirmCallback ?? onPressed: () {
() { if (confirmCallback != null) {
controller.gotoDealMessage(message); confirmCallback?.call();
controller.ignore(); controller.dismiss();
}, } else {
controller.gotoDealMessage(message);
controller.ignore();
}
},
borderRadius: 8, borderRadius: 8,
), ),
) )
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论