Files
Test/iosApp/iosApp/ContentView.swift
T
lamtruong28 4f6c7a099a
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 25s
Test / test (push) Successful in 19s
Test CI
2026-08-06 15:52:45 +07:00

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()
}
}