Is `Scaffold` just an Android thing? Is there an e...
# compose-desktop
d
Is
Scaffold
just an Android thing? Is there an equivalent on Desktop and Web?
j
1. Material design is not only for Android 2. Even it being a "material design" thing, based on how you customize every item in the slots, it can look very different, looking like material or like windows XP if you want
d
What about in terms of Compose? As far as I understood,
Scaffold
is available only for Android?
sorry, me wrong! I just had a look at the PeopleInSpace sample and I realized it’s possible to use
Scaffold
on Desktop too! https://github.com/joreilly/PeopleInSpace/blob/main/compose-desktop/src/main/kotlin/main.kt
But I guess on Compose for Web there is not such a thing, yet?
c
AFAIK compose for web doesn't draw UI at all. Compose for web still uses DOM elements. (I'm probably wrong though. I really don't know how compose for web work, but I've read Jims tweets)
j
I am not sure if scaffold is inside material library, I think so, and material is not available in web yet.
@Colton Idle I think column and row is available 🤔