gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[taler-taler-ios] 11/54: Accessibility


From: gnunet
Subject: [taler-taler-ios] 11/54: Accessibility
Date: Fri, 30 Jun 2023 22:33:43 +0200

This is an automated email from the git hooks/post-receive script.

marc-stibane pushed a commit to branch master
in repository taler-ios.

commit 50a02d308c5bd8a695f55e5d050d9f921e6c912c
Author: Marc Stibane <marc@taler.net>
AuthorDate: Tue Jun 20 09:10:56 2023 +0200

    Accessibility
---
 TalerWallet1/Views/Transactions/ManualDetails.swift | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/TalerWallet1/Views/Transactions/ManualDetails.swift 
b/TalerWallet1/Views/Transactions/ManualDetails.swift
index 4940e18..c3f2576 100644
--- a/TalerWallet1/Views/Transactions/ManualDetails.swift
+++ b/TalerWallet1/Views/Transactions/ManualDetails.swift
@@ -20,6 +20,7 @@ struct ManualDetails: View {
                 Text(iban)
                 Spacer()
                 CopyButton(textToCopy: iban, vertical: true)
+                    .accessibilityLabel("Copy IBAN")
                     .disabled(false)
             }   .padding(.leading)
                 .padding(.vertical, -8)
@@ -28,8 +29,10 @@ struct ManualDetails: View {
                 .listRowSeparator(.hidden)
             HStack {
                 Text(details.reservePub)
+                    .accessibilityLabel("Taler cryptocode")
                 Spacer()
                 CopyButton(textToCopy: details.reservePub, vertical: true)
+                    .accessibilityLabel("Copy subject")
                     .disabled(false)
             }   .padding(.leading)
                 .padding(.vertical, -8)
@@ -37,14 +40,16 @@ struct ManualDetails: View {
             HStack {
                 Spacer()
                 ShareButton(textToShare: payto, dismissFirst: false)
+                    .accessibilityLabel("Share PayTo ULR")
                     .disabled(false)
                 Spacer()
             }   .listRowSeparator(.hidden)
-            Text("Payto URL")
+            Text(verbatim: "PayTo URL")       // the only reason for this 
leading-aligned text is to get a nice full lenght listRowSeparator
                 .font(.footnote)
                 .foregroundColor(Color.yellow)   // clear
                 .padding(.vertical, -8)
                 .listRowSeparator(.automatic)
+                .accessibilityHidden(true)
         }
     }
 }

-- 
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]