Nick Kleban
11/15/2023, 11:03 AMLambda memoization is done automatically by the compiler by generating a remember call implicitly based on the stable values captured by the lambda.
My question is it ok to write code like this without remember?
@Composable
override fun SomeScreen() {
val someLabmda = { /* No params, 1 CompositionLocal call*/ }
SomeComponent( //Composable function
...,
someLabmda
)
}