Hi, is there will be a iOS version of Compose soon...
# compose
a
Hi, is there will be a iOS version of Compose soon ?
🚫 2
f
No, there are experiments with the Compose runtime on iOS, but there is no Compose Ui Library
a
Okay, is it planned ?
f
I think JetBrains is interested in making it work, but at this time there are no plans or active development
👍 2
j
Do you mean Compose UI? We've been using Compose on iOS for about 6 months
😂 9
m
@jw could you elaborate on that? Do you use foundation runtime for state management?
j
No. Just the compiler and runtime.
m
What for?
j
Driving UIKit from composable functions
a
Keep seeing this ... on the iOS side https://forums.swift.org/t/swiftui-for-non-apple-platforms-like-android-web-windows/25455 😂. Guess I am the only one who likes to do Compose on Android and SwiftUI on iOS ... 🤷🏽
m
@jw can you link some example, am really interested in how that can be done
j
Compose works on object trees and UIKit it an object tree. We also use Compose with Android's view system and the DOM on the web (prior to compose-web existing).
If you want to see an example of Compose with a custom tree my Mosaic project has a very simple one.
m
thanks. I found it on your github, I will take a look. it’s really interesting