Hey everyone, I'm just getting started with Compos...
# compose
t
Hey everyone, I'm just getting started with Compose. Is it possible to start with transforming one view of an existing codebase into a Composable and somehow use that within the old UI system?
💡 1
m
Yes, you have
Copy code
fun ViewGroup.setContent(
    content: @Composable() () -> Unit
)
for this
🙏 5
t
Awesome, thank you for your help! 👍