Hello, Is it possible to try out compose without a...
# compose
a
Hello, Is it possible to try out compose without android itself? I mean just somehow use only compose core where I can write @Composable functions and somehow run (render) these functions with my own implementation.
s
Hi, yes, you'll need compose-runtime and compose-compiler. To make it run outside of swing you will have to do some hackery with sourcesets. I did something similar in https://github.com/ShikaSD/compose-server-side.
👍 3
a
hm, interesting experiment 🙂 thanks