Skip to content

Instantly share code, notes, and snippets.

View michalguspiel's full-sized avatar

Michal Guspiel michalguspiel

  • Helsinki
View GitHub Profile
@michalguspiel
michalguspiel / SwiftUIComponent.swift
Created March 15, 2024 11:59
Swift UI in Compose Multiplatform
class TheFactory: Factory {
func makeController() -> UIViewController {
MySwiftUIViewController()
}
}
// Create your SwiftUI view
struct MySwiftUIView: View {
var body: some View {
Text("Hello, SwiftUI!")