feat: Add spacing between invoice history and spending breakdown card in billing view

This commit is contained in:
Achintha Isuru
2026-02-01 21:07:15 -05:00
parent 08b96cea6f
commit 82e479b4c0

View File

@@ -200,6 +200,8 @@ class _BillingViewState extends State<BillingView> {
const SpendingBreakdownCard(), const SpendingBreakdownCard(),
if (state.invoiceHistory.isEmpty) _buildEmptyState(context) if (state.invoiceHistory.isEmpty) _buildEmptyState(context)
else InvoiceHistorySection(invoices: state.invoiceHistory), else InvoiceHistorySection(invoices: state.invoiceHistory),
const SizedBox(height: UiConstants.space32),
], ],
), ),
); );