commit 1e0346a920dea3b762a05933b5fc036a6799c315 parent 467894526a0479cca5b8e31f43dd657ce4c8d0b9 Author: Marc Stibane <marc@taler.net> Date: Mon, 3 Jul 2023 06:31:42 +0200 accessibility Diffstat:
| M | TalerWallet1/Views/Exchange/ExchangeListView.swift | | | 3 | ++- |
| M | TalerWallet1/Views/HelperViews/Buttons.swift | | | 1 | + |
2 files changed, 3 insertions(+), 1 deletion(-)
diff --git a/TalerWallet1/Views/Exchange/ExchangeListView.swift b/TalerWallet1/Views/Exchange/ExchangeListView.swift @@ -56,7 +56,8 @@ struct ExchangeListView: View { .navigationTitle(navTitle) .navigationBarTitleDisplayMode(.automatic) .navigationBarItems(leading: HamburgerButton(action: hamburgerAction), - trailing: PlusButton(action: plusAction)) + trailing: PlusButton(action: plusAction) + .accessibilityLabel("Add Exchange")) .overlay { if exchanges.isEmpty { Text("No Exchanges yet...") diff --git a/TalerWallet1/Views/HelperViews/Buttons.swift b/TalerWallet1/Views/HelperViews/Buttons.swift @@ -38,6 +38,7 @@ struct QRButton : View { Image(systemName: "qrcode.viewfinder") } .font(font ?? .title) + .accessibilityLabel("Scan QR codes") } }