From a2cf65fb86881cd835f9032d67f0ed3070e3d855 Mon Sep 17 00:00:00 2001 From: Vaibhav Surve Date: Thu, 6 Nov 2025 17:56:15 +0530 Subject: [PATCH] chnages the size of the payee and the date --- lib/view/finance/payment_request_screen.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/view/finance/payment_request_screen.dart b/lib/view/finance/payment_request_screen.dart index 397d889..57163c8 100644 --- a/lib/view/finance/payment_request_screen.dart +++ b/lib/view/finance/payment_request_screen.dart @@ -327,7 +327,7 @@ class _PaymentRequestMainScreenState extends State Row( children: [ MyText.bodySmall("Payee: ", color: Colors.grey[600]), - MyText.bodyMedium(item.payee, fontWeight: 600), + MyText.bodySmall(item.payee, fontWeight: 600), ], ), const SizedBox(height: 6), @@ -336,7 +336,7 @@ class _PaymentRequestMainScreenState extends State Row( children: [ MyText.bodySmall("Due Date: ", color: Colors.grey[600]), - MyText.bodySmall(dueDate, fontWeight: 500), + MyText.bodySmall(dueDate, fontWeight: 600), ], ), const Spacer(),