Files
ShadowrunCharSheet/iosApp/iosApp/iosApp.swift
shahondin1624 cd027b9f9b Initial commit
2025-10-25 11:22:27 +02:00

22 lines
495 B
Swift

import SwiftUI
import SharedUI
@main
struct ComposeApp: App {
var body: some Scene {
WindowGroup {
ContentView().ignoresSafeArea(.all)
}
}
}
struct ContentView: UIViewControllerRepresentable {
func makeUIViewController(context: Context) -> UIViewController {
return MainKt.MainViewController()
}
func updateUIViewController(_ uiViewController: UIViewController, context: Context) {
// Updates will be handled by Compose
}
}