[AuthScreen]: Fix toastView bg/fg color and text color

This commit is contained in:
Magesh K
2025-01-02 20:30:16 +05:30
parent bf8a42d490
commit 74749b6502

View File

@@ -125,6 +125,7 @@ private extension AuthenticationViewController
let error = error.withLocalizedTitle(NSLocalizedString("Failed to Log In", comment: "")) let error = error.withLocalizedTitle(NSLocalizedString("Failed to Log In", comment: ""))
let toastView = ToastView(error: error) let toastView = ToastView(error: error)
toastView.show(in: self) toastView.show(in: self)
toastView.backgroundColor = .white
toastView.textLabel.textColor = .altPrimary toastView.textLabel.textColor = .altPrimary
toastView.detailTextLabel.textColor = .altPrimary toastView.detailTextLabel.textColor = .altPrimary
self.toastView = toastView self.toastView = toastView