I am interested in kotlin for backend and server d...
# server
n
I am interested in kotlin for backend and server driven UI. Any idea how to do it?
m
Yes we’re doing that. You can use something like spring boot and thymeleaf for server side templating.
n
I was thinking more on the android side
b
Here is an example - not for Android - but instead for the web, that is entirely server-driven UI, written using just the standard library, for reference material. Caveat - this is definitely an unorthodox approach, but it's good to think outside the box sometimes.
n
This looks like server side rendering
a
Use javalin #javalin
a
server side rendering != server driven ui
n
Exactly @andylamax
b
I had to read up on this. It sort of looks like recreating the essential capabilities of the concept of html in a browser, but instead using json in an app, is that generally right?
n
Yes. That’s sounds about right @Byron Katz. But it’s pretty hard to come to a common convention which will work for most of the cases. I think compose is making it easier. Wanted to know more about it