From dbe102e3f29c8e9aa2a339f34749a8a3f8955bee Mon Sep 17 00:00:00 2001 From: Ivan Grachev Date: Thu, 25 Aug 2022 15:16:20 +0300 Subject: [PATCH] Tune selected account cell on iOS --- Tokenary iOS/Screens/Accounts/Views/AccountTableViewCell.swift | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Tokenary iOS/Screens/Accounts/Views/AccountTableViewCell.swift b/Tokenary iOS/Screens/Accounts/Views/AccountTableViewCell.swift index a4a6bd9c..10f5a253 100644 --- a/Tokenary iOS/Screens/Accounts/Views/AccountTableViewCell.swift +++ b/Tokenary iOS/Screens/Accounts/Views/AccountTableViewCell.swift @@ -32,6 +32,9 @@ class AccountTableViewCell: UITableViewCell { } else { backgroundColor = .secondarySystemGroupedBackground } + + titleLabel.textColor = isSelected ? .white : .label + moreButton.tintColor = isSelected ? .white : .tintColor } private func setDisabled(_ disabled: Bool) {