// // ImagePicker.swift // im-client-ios // // Created by 北京居家科技有限公司 on 2022/1/4. // import Foundation import SwiftUI struct ImagePicker: UIViewControllerRepresentable { typealias UIViewControllerType = WebViewUI func makeUIViewController(context: Context) -> WebViewUI { let picker = WebViewUI() return picker } func updateUIViewController(_ uiViewController: WebViewUI, context: Context) { } }