Greetings, Question: is there a way to implement a...
# compose-android
m
Greetings, Question: is there a way to implement a splash screen for an android tv app that uses material3 and jetpack compose? im looking without answer that the core-splashscreen library works fine for phones/tables/foldables but not for tv apps 😢
c
none of the androidx splashscreen stuff uses compose as its too early for the system and it can only load resource xmls. if you want a "splash screen" that adds an artificial delay before opening up your app then yes you can do that with compose.
m
I started building a custom Splash screen with composable functions, i think this could work, but, there are some enhancement about timeout and ui state management 💻