Files
compose-multiplatform/experimental/examples/chat-mpp/iosApp/iosApp/ComposeViewControllerToSwiftUI.swift
2023-02-19 20:03:59 +03:00

13 lines
336 B
Swift

import UIKit
import SwiftUI
import shared
struct ComposeViewControllerToSwiftUI: UIViewControllerRepresentable {
func makeUIViewController(context: Context) -> UIViewController {
return Main_iosKt.ChapViewController()
}
func updateUIViewController(_ uiViewController: UIViewController, context: Context) {
}
}