Device Verification: Verify screen: Theme emojis names

This commit is contained in:
manuroe
2019-04-08 17:10:40 +02:00
parent cc464031d1
commit 9b4e54d5e0
5 changed files with 36 additions and 1 deletions
@@ -16,7 +16,11 @@
import UIKit
class VerifyEmojiCollectionViewCell: UICollectionViewCell {
class VerifyEmojiCollectionViewCell: UICollectionViewCell, Themable {
@IBOutlet weak var emoji: UILabel!
@IBOutlet weak var name: UILabel!
func update(theme: Theme) {
name.textColor = theme.textPrimaryColor
}
}