confirm order save

This commit is contained in:
efrilm
2025-10-28 17:10:47 +07:00
parent a514a8abdb
commit 0693411cf7
3 changed files with 252 additions and 0 deletions
@@ -4,6 +4,7 @@ class CustomModalDialog extends StatelessWidget {
final String title;
final String? subtitle;
final Widget child;
final Widget? bottom;
final VoidCallback? onClose;
final double? minWidth;
final double? maxWidth;
@@ -22,6 +23,7 @@ class CustomModalDialog extends StatelessWidget {
this.minHeight,
this.maxHeight,
this.contentPadding,
this.bottom,
});
@override
@@ -96,6 +98,7 @@ class CustomModalDialog extends StatelessWidget {
child: child,
),
),
if (bottom != null) bottom!,
],
),
),