metatext/Views/UIKit/Collection View Cells/TagCollectionViewCell.swift
2021-01-30 21:43:40 -08:00

16 lines
477 B
Swift

// Copyright © 2021 Metabolist. All rights reserved.
import UIKit
import ViewModels
final class TagCollectionViewCell: SeparatorConfiguredCollectionViewListCell {
var viewModel: TagViewModel?
override func updateConfiguration(using state: UICellConfigurationState) {
guard let viewModel = viewModel else { return }
contentConfiguration = TagContentConfiguration(viewModel: viewModel).updated(for: state)
updateConstraintsIfNeeded()
}
}