Is something like this possible? ```val composable...
# compose
m
Is something like this possible?
Copy code
val composables: List<@Composable () -> Unit>

someComposableLoopingScope(composables) { composable ->
  composable.invoke()
}
z
yes
🙌 2
z
You might want to also send a key to identify the composables in your loop and then use key(key) but yes