Hello Do you know if the compose multiplatform sup...
# multiplatform
r
Hello Do you know if the compose multiplatform supports Android/iOS TV as well or not?
h
No it doesn’t
m
Seems like you could use it for Android TV, but it wouldn't be recommended. > Use the TV version of APIs wherever possible. While it is technically possible to use the mobile version of Compose Material, it is not optimized for the unique style of interactions on Android TV. In addition, mixing Compose Material with Compose Material from Compose for TV can result in unexpected behavior. For example, because each library has its own
MaterialTheme
object, there's the possibility of colors, typography, or shapes being inconsistent if both versions are used. https://developer.android.com/training/tv/playback/compose
h
yes you can but there’s the compose-tv for android which you should use Edit: the one you’ve mentioned
r
and I can add a tv module for ios and android for the project and use it like that?
h
just for Android
r
and is there a plan to support apple tv?
c
The TV OS's are still super propriatary and controller support is really specific, I guess the best approach would be to create common business logic (apis/controllers/etc), then ui/interactions would probably be platform specific.
☝️ 1