mattinger
10/26/2021, 3:15 PMmattinger
10/26/2021, 3:16 PMval loggingContext = LocalLoggingContext.current
Button(
onClick = {
loggingContext.log(...)
...
}
) { ... }
mattinger
10/26/2021, 3:22 PMCsaba Kozák
10/26/2021, 3:24 PMonClick
lambda is not called inside the composition, so it is ok to have side effects in it.mattinger
10/26/2021, 5:55 PM