Apple just announced a new UI toolkit, called "Swi...
# kotlin-native
c
Apple just announced a new UI toolkit, called "SwiftUI". It's built in Swift apparently. Can I use this from Kotlin/Native?
j
I guess nobody knows until somebody could play with a beta. Curious if some common layer can be created between compose and SwiftUI
c
Question is whether KN generally supports Swift interop, or only objective C?
l
Only through Obj-C exports. That means you'll be able to bridge them, but you'll not be able to call Swift-only APIs until Kotlin/Native makes it possible.
s
I thought I saw a
struct
in the code demo. That definitely rules out ObjC and Kotlin interop.