arekolek
11/14/2022, 5:31 PMonValueChange = ::onValueChange
in attached code for example
If I run this code and type “a” in first field, then type “b” in second field, the output shows “b”
Then if I type “c”, the output shows “a.bc”
If I change that line to use a lambda onValueChange = { onValueChange(it) }
then output shows “a.b” as soon as I type “b” in above example
Are local functions, or references, or references to local functions not supported in composables? Or this is some bug I found? Or I’m just doing something wrong?Zach Klippenstein (he/him) [MOD]
11/14/2022, 8:54 PM