chnages the size of the payee and the date

This commit is contained in:
Vaibhav Surve 2025-11-06 17:56:15 +05:30
parent f55cf343fb
commit a2cf65fb86

View File

@ -327,7 +327,7 @@ class _PaymentRequestMainScreenState extends State<PaymentRequestMainScreen>
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<PaymentRequestMainScreen>
Row(
children: [
MyText.bodySmall("Due Date: ", color: Colors.grey[600]),
MyText.bodySmall(dueDate, fontWeight: 500),
MyText.bodySmall(dueDate, fontWeight: 600),
],
),
const Spacer(),