From 2e2c70f660031e73bda7b94c35f37c7e178db28b Mon Sep 17 00:00:00 2001 From: julian Date: Sun, 18 Sep 2022 08:33:49 -0600 Subject: [PATCH 1/2] hide "Current Receiving" on My Stack (self) contact addresses --- .../address_book_views/subviews/contact_popup.dart | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/lib/pages/address_book_views/subviews/contact_popup.dart b/lib/pages/address_book_views/subviews/contact_popup.dart index f433a85b7..b1a926e33 100644 --- a/lib/pages/address_book_views/subviews/contact_popup.dart +++ b/lib/pages/address_book_views/subviews/contact_popup.dart @@ -214,14 +214,12 @@ class ContactPopUp extends ConsumerWidget { style: STextStyles.itemSubtitle12, ), - if (contact.id == "default") - const SizedBox( - height: 2, + if (contact.id != "default") + Text( + "${e.label} (${e.coin.ticker})", + style: + STextStyles.itemSubtitle12, ), - Text( - "${e.label} (${e.coin.ticker})", - style: STextStyles.itemSubtitle12, - ), const SizedBox( height: 2, ), From 36be1bfc00121291cc7b056b2ffb11bc133dec69 Mon Sep 17 00:00:00 2001 From: ryleedavis Date: Mon, 19 Sep 2022 08:24:53 -0600 Subject: [PATCH 2/2] change build --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 0150e5728..bd36d781f 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -11,7 +11,7 @@ description: Stack Wallet # In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion. # Read more about iOS versioning at # https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html -version: 1.4.43+58 +version: 1.4.45+60 environment: sdk: ">=2.17.0 <3.0.0"