commit 6ab20e6c9be8a1d85b442c0181ff8263336e4613
parent e3f4496ef4b35ff17741de7213a2ca234338b537
Author: Marc Stibane <marc@taler.net>
Date: Thu, 26 Jun 2025 04:19:56 +0200
NFC logo
Diffstat:
2 files changed, 3 insertions(+), 1 deletion(-)
diff --git a/TalerWallet1/Controllers/PublicConstants.swift b/TalerWallet1/Controllers/PublicConstants.swift
@@ -39,6 +39,7 @@ public let UNKNOWN = String(localized: "UNKNOWN", comment: "merchant didn't spec
public let BALANCES = "chart.bar.xaxis" // 2.0 (iOS 14)
public let SETTINGS = "gear" // 1.0 (iOS 13)
public let QRBUTTON = "qrcode.viewfinder" // 1.0 (iOS 13)
+public let NFCLOGO = "wave.3.right.circle" //
public let CONFIRM_BANK = "circle.fill" // badge in PendingRow, TransactionRow and TransactionSummary
public let NEEDS_KYC = "star.fill" // badge in PendingRow, TransactionRow and TransactionSummary
diff --git a/TalerWallet1/Views/HelperViews/GradientBorder.swift b/TalerWallet1/Views/HelperViews/GradientBorder.swift
@@ -40,7 +40,8 @@ struct BorderWithNFC<Content: View>: View {
VStack {
if nfcHint {
if !minimalistic {
- Text("Tap for NFC:")
+ let nfcLogo = Image(systemName: NFCLOGO) // "qrcode.viewfinder"
+ Text("\(nfcLogo) Tap for NFC")
.talerFont(.subheadline)
.padding(.vertical, -4)
}