In Compose performance article there is suggestion...
# compose
p
In Compose performance article there is suggestion to defer state reads using lambdas. Why not to pass State and defer call to State.value?
o
You can do that as well. Lambdas are just a more universal way to do it.
z
Lambdas are more flexible - you can do calculations in them, pass them easier in tests, etc