taler-ios

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

commit fcd04523e9438d0ff61812c4313fb40d9911b409
parent af0b4440519649965f720408bad09d7beab5cb09
Author: Marc Stibane <marc@taler.net>
Date:   Fri, 17 Jul 2026 11:53:48 +0200

useMixnet

Diffstat:
MTalerWallet1/Views/Settings/SettingsView.swift | 9++++++++-
1 file changed, 8 insertions(+), 1 deletion(-)

diff --git a/TalerWallet1/Views/Settings/SettingsView.swift b/TalerWallet1/Views/Settings/SettingsView.swift @@ -27,6 +27,7 @@ struct SettingsView: View { @AppStorage("myListStyle") var myListStyle: MyListStyle = .automatic @AppStorage("minimalistic") var minimalistic: Bool = false @AppStorage("useAuthentication") var useAuthentication: Bool = false + @AppStorage("useMixnet") var useMixnet: Bool = false @AppStorage("pushNotifications") var pushNotifications: Bool = false @State private var listID = UUID() @@ -160,7 +161,13 @@ struct SettingsView: View { // } else { // biometricService.isAuthenticated = false } - +#if !TALER_WALLET + SettingsToggle(name: "NYM mixnet", + value: $useMixnet, + id1: "useMixnet", + imageName: "eye.slash", // 􀋯 + description: String(localized: "Protect your privacy")) +#endif #if TALER_NIGHTLY SettingsToggle(name: String(localized: "Push Notifications"), value: $pushNotifications, id1: "pushNotifications",