https://kotlinlang.org logo
#compose
Title
# compose
a

Antanas A.

05/20/2020, 11:33 AM
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

shikasd

05/20/2020, 11:40 AM
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

Antanas A.

05/20/2020, 11:42 AM
hm, interesting experiment 🙂 thanks