taler-ios

iOS apps for GNU Taler (wallet)
Log | Files | Refs | README | LICENSE

commit 6a2041bfb4e4e27c500c62543b18d7f43f9cff0d
parent 76b99d6de439ba8143e3aa58385c8fa5b7316903
Author: Marc Stibane <marc@taler.net>
Date:   Tue, 10 Mar 2026 15:13:24 +0100

Add "Wallet" to logo in WalletEmptyView (with logo font Atkinson Hyperlegible Next Medium)

Diffstat:
MTalerWallet1/Resources/Assets.xcassets/taler-logo-full.imageset/taler-logo-full-dark.svg | 4++--
MTalerWallet1/Resources/Assets.xcassets/taler-logo-full.imageset/taler-logo-full.svg | 4++--
MTalerWallet1/Views/Balances/BalancesListView.swift | 12+++++++++++-
3 files changed, 15 insertions(+), 5 deletions(-)

diff --git a/TalerWallet1/Resources/Assets.xcassets/taler-logo-full.imageset/taler-logo-full-dark.svg b/TalerWallet1/Resources/Assets.xcassets/taler-logo-full.imageset/taler-logo-full-dark.svg @@ -1,8 +1,8 @@ <?xml version="1.0" encoding="UTF-8" standalone="no"?> <svg - width="196.2" + width="120" height="87.3" - viewBox="-25 -30 250 150" + viewBox="0 -30 200 150" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg"> <g diff --git a/TalerWallet1/Resources/Assets.xcassets/taler-logo-full.imageset/taler-logo-full.svg b/TalerWallet1/Resources/Assets.xcassets/taler-logo-full.imageset/taler-logo-full.svg @@ -1,8 +1,8 @@ <?xml version="1.0" encoding="UTF-8" standalone="no"?> <svg - width="196.2" + width="120" height="87.3" - viewBox="-25 -30 250 150" + viewBox="0 -30 200 150" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg"> <g diff --git a/TalerWallet1/Views/Balances/BalancesListView.swift b/TalerWallet1/Views/Balances/BalancesListView.swift @@ -46,7 +46,17 @@ struct BalancesListView: View { // Group { let count = controller.balances.count if controller.balances.isEmpty { - let talerLogo = Image(TALER_LOGO_FULL) + let talerLogo = HStack(spacing: 2) { + Image(TALER_LOGO_FULL) +// .border(Color.gray, width: 1) +// Text("TALER Wallet") + Text("Wallet") + .font(.logo(27, weight: .medium)) + .kerning(1.0) + } + .accessibilityElement(children: .combine) + .accessibilityAddTraits(.isHeader) + .accessibilityLabel(Text("Taler Wallet", comment: "a11y")) WalletEmptyView(stack: stack.push("isEmpty")) // .navigationTitle("Taler Wallet")