metatext/Views/UIKit/Table View Cells/AccountTableViewCell.swift

16 lines
485 B
Swift
Raw Normal View History

2020-09-23 01:00:56 +00:00
// Copyright © 2020 Metabolist. All rights reserved.
import UIKit
import ViewModels
2021-02-09 02:48:02 +00:00
final class AccountTableViewCell: SeparatorConfiguredTableViewCell {
2020-09-23 01:00:56 +00:00
var viewModel: AccountViewModel?
override func updateConfiguration(using state: UICellConfigurationState) {
guard let viewModel = viewModel else { return }
contentConfiguration = AccountContentConfiguration(viewModel: viewModel).updated(for: state)
2021-02-02 21:49:29 +00:00
accessibilityElements = [contentView]
2020-09-23 01:00:56 +00:00
}
}