22 lines
496 B
Swift
22 lines
496 B
Swift
import UIKit
|
|
import SwiftUI
|
|
import BankmeisterFramework
|
|
|
|
struct ComposeView: UIViewControllerRepresentable {
|
|
func makeUIViewController(context: Context) -> UIViewController {
|
|
MainViewControllerKt.MainViewController()
|
|
}
|
|
|
|
func updateUIViewController(_ uiViewController: UIViewController, context: Context) {}
|
|
}
|
|
|
|
struct ContentView: View {
|
|
var body: some View {
|
|
ComposeView()
|
|
.ignoresSafeArea(.keyboard) // Compose has own keyboard handler
|
|
}
|
|
}
|
|
|
|
|
|
|