2020-09-23 03:00:56 +02:00
|
|
|
// Copyright © 2020 Metabolist. All rights reserved.
|
|
|
|
|
|
|
|
import UIKit
|
|
|
|
import ViewModels
|
|
|
|
|
2021-02-09 03:48:02 +01:00
|
|
|
final class AccountTableViewCell: SeparatorConfiguredTableViewCell {
|
2020-09-23 03:00:56 +02: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 22:49:29 +01:00
|
|
|
accessibilityElements = [contentView]
|
2020-09-23 03:00:56 +02:00
|
|
|
}
|
|
|
|
}
|