1
0
mirror of https://github.com/metabolist/metatext synced 2025-01-24 16:31:51 +01:00
metatext-app-ios-iphone-ipad/Views/EmojiContentConfiguration.swift
Justin Mazzocchi dfcc949864
wip
2021-01-15 02:13:10 -08:00

19 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
}
}