metatext/Views/UIKit/Collection View Cells/EmojiCollectionViewCell.swift
Justin Mazzocchi 588154b050
wip
2021-02-15 11:17:06 -08:00

24 lines
744 B
Swift

// Copyright © 2021 Metabolist. All rights reserved.
import UIKit
import ViewModels
final class EmojiCollectionViewCell: UICollectionViewCell {
var emoji: PickerEmoji?
override func updateConfiguration(using state: UICellConfigurationState) {
guard let emoji = emoji else { return }
contentConfiguration = EmojiContentConfiguration(emoji: emoji)
var backgroundConfiguration = UIBackgroundConfiguration.listPlainCell().updated(for: state)
if !state.isHighlighted && !state.isSelected {
backgroundConfiguration.backgroundColor = .clear
}
backgroundConfiguration.cornerRadius = .defaultCornerRadius
self.backgroundConfiguration = backgroundConfiguration
}
}