commit 4dd800e6b9a70c4234bbf80af69a6f0c3ba545d0
parent 34c0728f212843b8861ea10e9505f9b9166023cc
Author: ericholguin <eric.holguinsanchez@gmail.com>
Date: Thu, 26 Oct 2023 20:33:34 -0600
ui: make qrcode view font color white
Currently when in light mode the font is black which blends into the background
Changelog-Fixed: use white font color in qrcode view
Closes: https://github.com/damus-io/damus/pull/1653
Reviewed-by: William Casarin <jb55@jb55.com>
Signed-off-by: William Casarin <jb55@jb55.com>
Diffstat:
1 file changed, 5 insertions(+), 0 deletions(-)
diff --git a/damus/Views/QRCodeView.swift b/damus/Views/QRCodeView.swift
@@ -134,10 +134,12 @@ struct QRCodeView: View {
if let display_name = profile?.display_name {
Text(display_name)
.font(.system(size: 24, weight: .heavy))
+ .foregroundColor(.white)
}
if let name = profile?.name {
Text("@" + name)
.font(.body)
+ .foregroundColor(.white)
}
Spacer()
@@ -157,9 +159,11 @@ struct QRCodeView: View {
Text("Follow me on Nostr", comment: "Text on QR code view to prompt viewer looking at screen to follow the user.")
.font(.system(size: 24, weight: .heavy))
.padding(.top)
+ .foregroundColor(.white)
Text("Scan the code", comment: "Text on QR code view to prompt viewer to scan the QR code on screen with their device camera.")
.font(.system(size: 18, weight: .ultraLight))
+ .foregroundColor(.white)
Spacer()
@@ -182,6 +186,7 @@ struct QRCodeView: View {
Text("Scan a user's pubkey", comment: "Text to prompt scanning a QR code of a user's pubkey to open their profile.")
.padding(.top, 50)
.font(.system(size: 24, weight: .heavy))
+ .foregroundColor(.white)
Spacer()