feat: tax page

This commit is contained in:
efrilm
2025-08-01 15:30:33 +07:00
parent 1384253e8a
commit 8c946ce3d9
5 changed files with 149 additions and 139 deletions
+6 -1
View File
@@ -12,6 +12,7 @@ class CustomModalDialog extends StatelessWidget {
final double? maxWidth;
final double? minHeight;
final double? maxHeight;
final EdgeInsets? contentPadding;
const CustomModalDialog({
super.key,
@@ -23,6 +24,7 @@ class CustomModalDialog extends StatelessWidget {
this.maxWidth,
this.minHeight,
this.maxHeight,
this.contentPadding,
});
@override
@@ -100,7 +102,10 @@ class CustomModalDialog extends StatelessWidget {
],
),
),
child,
Padding(
padding: contentPadding ?? EdgeInsets.zero,
child: child,
),
],
),
),