mirror of
https://github.com/metabolist/metatext.git
synced 2024-11-10 10:39:30 +00:00
19 lines
439 B
Swift
19 lines
439 B
Swift
|
// Copyright © 2021 Metabolist. All rights reserved.
|
||
|
|
||
|
import UIKit
|
||
|
import ViewModels
|
||
|
|
||
|
struct IdentityContentConfiguration {
|
||
|
let viewModel: IdentityViewModel
|
||
|
}
|
||
|
|
||
|
extension IdentityContentConfiguration: UIContentConfiguration {
|
||
|
func makeContentView() -> UIView & UIContentView {
|
||
|
IdentityView(configuration: self)
|
||
|
}
|
||
|
|
||
|
func updated(for state: UIConfigurationState) -> IdentityContentConfiguration {
|
||
|
self
|
||
|
}
|
||
|
}
|