Explore typing notifications inspired by web

- Update for dark mode
This commit is contained in:
Gil Eluard
2021-03-24 23:16:27 +01:00
parent 86712e60bf
commit cadcf20b9a
2 changed files with 5 additions and 15 deletions
@@ -36,20 +36,16 @@ class RoomTypingBubbleCell: UITableViewCell {
// MARK: - Lifecycle
override func awakeFromNib() {
super.awakeFromNib()
additionalUsersLabel?.textColor = ThemeService.shared().theme.textSecondaryColor
dotsView?.highlightedDotColor = ThemeService.shared().theme.textTertiaryColor
dotsView?.dotColor = ThemeService.shared().theme.tabBarUnselectedItemTintColor
}
override func prepareForReuse() {
super.prepareForReuse()
for pictureView in userPictureViews {
pictureView.removeFromSuperview()
}
additionalUsersLabel?.textColor = ThemeService.shared().theme.textSecondaryColor
dotsView?.highlightedDotColor = ThemeService.shared().theme.textTertiaryColor
dotsView?.dotColor = ThemeService.shared().theme.textSecondaryColor
}
override func layoutSubviews() {