18 lines
439 B
Swift
18 lines
439 B
Swift
import UIKit
|
|
import SwiftUI
|
|
import Shared
|
|
|
|
struct ComposeView: UIViewControllerRepresentable {
|
|
func makeUIViewController(context: Self.Context) -> UIViewController {
|
|
MainViewControllerKt.MainViewController()
|
|
}
|
|
|
|
func updateUIViewController(_ uiViewController: UIViewController, context: Self.Context) {}
|
|
}
|
|
|
|
struct ContentView: View {
|
|
var body: some View {
|
|
ComposeView()
|
|
.ignoresSafeArea()
|
|
}
|
|
} |