metatext/Views/EditAttachmentView.swift

19 lines
620 B
Swift
Raw Normal View History

2021-01-10 01:26:51 +00:00
// Copyright © 2021 Metabolist. All rights reserved.
import SwiftUI
import ViewModels
struct EditAttachmentView: UIViewControllerRepresentable {
let viewModelsClosure: () -> (AttachmentViewModel, CompositionViewModel)
func makeUIViewController(context: Context) -> EditAttachmentViewController {
let (attachmentViewModel, compositionViewModel) = viewModelsClosure()
return EditAttachmentViewController(viewModel: attachmentViewModel, parentViewModel: compositionViewModel)
}
func updateUIViewController(_ uiViewController: EditAttachmentViewController, context: Context) {
}
}