mirror of
https://github.com/openMF/mobile-wallet.git
synced 2026-02-06 11:07:02 +00:00
22 lines
488 B
Swift
22 lines
488 B
Swift
import UIKit
|
|
import SwiftUI
|
|
import ComposeApp
|
|
|
|
struct ComposeView: UIViewControllerRepresentable {
|
|
func makeUIViewController(context: Context) -> UIViewController {
|
|
MifosViewControllerKt.MifosViewController()
|
|
}
|
|
|
|
func updateUIViewController(_ uiViewController: UIViewController, context: Context) {}
|
|
}
|
|
|
|
struct ContentView: View {
|
|
var body: some View {
|
|
ComposeView()
|
|
.ignoresSafeArea(.keyboard) // Compose has own keyboard handler
|
|
}
|
|
}
|
|
|
|
|
|
|