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
mbonnin
02/16/2020, 9:58 PM
Yes, you have
Copy code
fun ViewGroup.setContent(
content: @Composable() () -> Unit
)