mirror of
https://github.com/metabolist/metatext.git
synced 2024-11-14 04:21:01 +00:00
18 lines
417 B
Swift
18 lines
417 B
Swift
// Copyright © 2021 Metabolist. All rights reserved.
|
|
|
|
import UIKit
|
|
import ViewModels
|
|
|
|
struct EmojiContentConfiguration {
|
|
let emoji: PickerEmoji
|
|
}
|
|
|
|
extension EmojiContentConfiguration: UIContentConfiguration {
|
|
func makeContentView() -> UIView & UIContentView {
|
|
EmojiView(configuration: self)
|
|
}
|
|
|
|
func updated(for state: UIConfigurationState) -> EmojiContentConfiguration {
|
|
self
|
|
}
|
|
}
|