0xLet / SwiftUIKit

📱 UIKit code that is fun to write
https://0xlet.github.io/SwiftUIKit/
MIT License
74 stars 6 forks source link

Investigate namespace collisions for iOS 13 SwiftUI #97

Closed 0xLeif closed 4 years ago

0xLeif commented 4 years ago

https://github.com/0xLeif/SwiftUI-SUIK

0xLeif commented 4 years ago
import SwiftUI
import SwiftUIKit

struct ContentView: View {
    var body: some View {
        SwiftUIView {
            UIView {
                VStack {
                    [
                        Label("asdfasd")
                    ]
                }
            }
        }
    }
}