leeyi

The default behavior for Get.defaultDialog's onCancel method should be closeAllDialogs();

... ... @@ -196,8 +196,11 @@ extension ExtensionDialog on GetInterface {
borderRadius: BorderRadius.circular(radius)),
),
onPressed: () {
onCancel?.call();
back();
if (onCancel == null) {
closeAllDialogs();
} else {
onCancel.call();
}
},
child: Text(
textCancel ?? "Cancel",
... ...