mirror of
https://github.com/jlengrand/compose-multiplatform.git
synced 2026-03-10 08:11:20 +00:00
13 lines
336 B
Swift
13 lines
336 B
Swift
import UIKit
|
|
import SwiftUI
|
|
import shared
|
|
|
|
struct ComposeViewControllerToSwiftUI: UIViewControllerRepresentable {
|
|
func makeUIViewController(context: Context) -> UIViewController {
|
|
return Main_iosKt.ChatViewController()
|
|
}
|
|
|
|
func updateUIViewController(_ uiViewController: UIViewController, context: Context) {
|
|
}
|
|
}
|