From c2c5895dd71f3497247d84f48d7d4a7660d5ecc9 Mon Sep 17 00:00:00 2001 From: Matthew Date: Sun, 1 Sep 2024 14:55:28 -0500 Subject: [PATCH] ui: paste button --- BDKSwiftExampleWallet/View/Send/AddressView.swift | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/BDKSwiftExampleWallet/View/Send/AddressView.swift b/BDKSwiftExampleWallet/View/Send/AddressView.swift index 2016b7a0..53aa86c1 100644 --- a/BDKSwiftExampleWallet/View/Send/AddressView.swift +++ b/BDKSwiftExampleWallet/View/Send/AddressView.swift @@ -119,11 +119,11 @@ struct CustomScannerView: View { Button(action: pasteAction) { Text("Paste Address") .padding() - .foregroundColor(.primary) - .background(Color.white.opacity(0.8)) + .foregroundColor(Color(uiColor: .label)) + .background(Color(uiColor: .systemBackground).opacity(0.5)) .clipShape(Capsule()) } - .padding(.bottom, geometry.safeAreaInsets.bottom + 20) + .padding(.bottom, geometry.safeAreaInsets.bottom + 40) } } }