From cef1f79032f00829b5ef1e6b36897ba0d2ad9e85 Mon Sep 17 00:00:00 2001 From: efrilm Date: Mon, 22 Sep 2025 14:47:41 +0700 Subject: [PATCH] fix overflow in confirm payment --- lib/presentation/home/widgets/confirm_payment_title.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/presentation/home/widgets/confirm_payment_title.dart b/lib/presentation/home/widgets/confirm_payment_title.dart index 345e048..97d1f56 100644 --- a/lib/presentation/home/widgets/confirm_payment_title.dart +++ b/lib/presentation/home/widgets/confirm_payment_title.dart @@ -19,7 +19,7 @@ class ConfirmPaymentTitle extends StatelessWidget { @override Widget build(BuildContext context) { return Container( - height: context.deviceHeight * 0.1, + height: context.deviceHeight * 0.123, padding: const EdgeInsets.symmetric(horizontal: 16.0, vertical: 12.0), decoration: BoxDecoration( color: AppColors.white,