From 82e479b4c03c83bd4eab7c6023510034d0d0845f Mon Sep 17 00:00:00 2001 From: Achintha Isuru Date: Sun, 1 Feb 2026 21:07:15 -0500 Subject: [PATCH] feat: Add spacing between invoice history and spending breakdown card in billing view --- .../client/billing/lib/src/presentation/pages/billing_page.dart | 2 ++ 1 file changed, 2 insertions(+) diff --git a/apps/mobile/packages/features/client/billing/lib/src/presentation/pages/billing_page.dart b/apps/mobile/packages/features/client/billing/lib/src/presentation/pages/billing_page.dart index 825917ff..bc522cb9 100644 --- a/apps/mobile/packages/features/client/billing/lib/src/presentation/pages/billing_page.dart +++ b/apps/mobile/packages/features/client/billing/lib/src/presentation/pages/billing_page.dart @@ -200,6 +200,8 @@ class _BillingViewState extends State { const SpendingBreakdownCard(), if (state.invoiceHistory.isEmpty) _buildEmptyState(context) else InvoiceHistorySection(invoices: state.invoiceHistory), + + const SizedBox(height: UiConstants.space32), ], ), );