From 17bd124be6e9828ce989d7c64dba6fb18b9e9689 Mon Sep 17 00:00:00 2001 From: dreautall <109872040+dreautall@users.noreply.github.com> Date: Sat, 13 May 2023 13:03:48 +0000 Subject: [PATCH] OverflowBar: add spacing to end when required Some OverflowBars with alginemnt to the end had their final SizedBox removed in 86feeb0, but for them it was creating needed padding to the end of the popup. --- lib/pages/home/piggybank.dart | 2 ++ lib/pages/transaction/attachments.dart | 1 + 2 files changed, 3 insertions(+) diff --git a/lib/pages/home/piggybank.dart b/lib/pages/home/piggybank.dart index 5d52013d..79780e12 100644 --- a/lib/pages/home/piggybank.dart +++ b/lib/pages/home/piggybank.dart @@ -522,6 +522,7 @@ class _PiggyDetailsState extends State { }, child: const Icon(Icons.price_change_outlined), ), + const SizedBox(width: 12), ], ), ], @@ -701,6 +702,7 @@ class _PiggyAdjustBalanceState extends State { }, child: Text(MaterialLocalizations.of(context).saveButtonLabel), ), + const SizedBox(width: 12), ], ), ], diff --git a/lib/pages/transaction/attachments.dart b/lib/pages/transaction/attachments.dart index 98bf43ac..abf76579 100644 --- a/lib/pages/transaction/attachments.dart +++ b/lib/pages/transaction/attachments.dart @@ -351,6 +351,7 @@ class _AttachmentDialogState extends State }, child: Text(S.of(context).formButtonUpload), ), + const SizedBox(width: 12), ], ), );