taler-ios

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

commit 8a126ae2156ef416a42075ff2bf712c221fa4e2a
parent d9dde4b18c29dc8fa622d5397b509a7c40a6bb88
Author: Marc Stibane <marc@taler.net>
Date:   Wed, 19 Jul 2023 12:23:16 +0200

PayTo URL listRowSeparator

Diffstat:
MTalerWallet1/Views/Transactions/ManualDetails.swift | 8++++++--
1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/TalerWallet1/Views/Transactions/ManualDetails.swift b/TalerWallet1/Views/Transactions/ManualDetails.swift @@ -47,9 +47,13 @@ struct ManualDetails: View { .disabled(false) Spacer() } .listRowSeparator(.hidden) - Text(verbatim: "PayTo URL") // the only reason for this leading-aligned text is to get a nice full lenght listRowSeparator + Text(verbatim: "PayTo URL") // only reason for this leading-aligned text is to get a nice full length listRowSeparator .font(.footnote) - .foregroundColor(Color.yellow) // clear +#if DEBUG + .foregroundColor(Color.yellow) +#else + .foregroundColor(Color.clear) +#endif .padding(.vertical, -8) .listRowSeparator(.automatic) .accessibilityHidden(true)