Is it intended behavior to not be able to call a c...
# compose
b
Is it intended behavior to not be able to call a composable function from Clickable(onClick={ ComposableFoo() }){...}? I get the "Composition requires active composition context" error if I try to do this.
👌 2
l
yes, this is correct. onClick is in an event, and it gets called outside of “composition”, so calling a ComposableFoo is meaningless there
b
ah okay, thanks!