diff -r 4a652584013c -r 581f0b7dc09d sample/iosApp/SampleApp/ContentView.swift --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/sample/iosApp/SampleApp/ContentView.swift Mon Apr 28 13:35:53 2025 -0400 @@ -0,0 +1,35 @@ +// +// ContentView.swift +// SampleApp +// +// Created by Da Risk on 28/04/2025. +// + +import SwiftUI +import aboutoss_sample_app + +struct ContentView: View { + var body: some View { +// VStack { +// Image(systemName: "globe") +// .imageScale(.large) +// .foregroundStyle(.tint) +// Text("Hello, world!") +// } +// .padding() + ComposeViewController() + } +} + +struct ComposeViewController: UIViewControllerRepresentable { + func makeUIViewController(context: Context) -> UIViewController { + return MainKt.MainViewController() + } + + func updateUIViewController(_ uiViewController: UIViewController, context: Context) { + } +} + +#Preview { + ContentView() +}