mirror of
https://github.com/metabolist/metatext.git
synced 2024-11-22 16:21:00 +00:00
20 lines
506 B
Swift
20 lines
506 B
Swift
|
// Copyright © 2020 Metabolist. All rights reserved.
|
||
|
|
||
|
import UIKit
|
||
|
import ViewModels
|
||
|
|
||
|
struct AutocompleteItemContentConfiguration {
|
||
|
let item: AutocompleteItem
|
||
|
let identityContext: IdentityContext
|
||
|
}
|
||
|
|
||
|
extension AutocompleteItemContentConfiguration: UIContentConfiguration {
|
||
|
func makeContentView() -> UIView & UIContentView {
|
||
|
AutocompleteItemView(configuration: self)
|
||
|
}
|
||
|
|
||
|
func updated(for state: UIConfigurationState) -> AutocompleteItemContentConfiguration {
|
||
|
self
|
||
|
}
|
||
|
}
|