From 929323f788cf2a45dd5b7e009699367cfc11afec Mon Sep 17 00:00:00 2001 From: Krzysztof Rodak Date: Fri, 10 Nov 2023 15:41:35 +0100 Subject: [PATCH] fix: ios: fix qr code for white theme (#2175) Co-authored-by: Pavel Rybalko --- ios/PolkadotVault/Components/Buttons/QRCodeButton.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ios/PolkadotVault/Components/Buttons/QRCodeButton.swift b/ios/PolkadotVault/Components/Buttons/QRCodeButton.swift index 7123b1e68a..7c59dee0ee 100644 --- a/ios/PolkadotVault/Components/Buttons/QRCodeButton.swift +++ b/ios/PolkadotVault/Components/Buttons/QRCodeButton.swift @@ -28,7 +28,7 @@ struct QRCodeButton: View { label: { ZStack(alignment: .center) { Circle() - .strokeBorder(.white, lineWidth: Constants.outerWidth) + .strokeBorder(.backgroundSecondaryInversed, lineWidth: Constants.outerWidth) .frame(width: Constants.outerDiameter, height: Constants.outerDiameter) Circle() .frame(width: Constants.innerDiameter, height: Constants.innerDiameter)