ursus
08/23/2021, 2:38 PMthis
equivalent on compose clicks, to get the "view" reference? (for analytics purposes of logging "Button X was clicked" -- generically, not locally manually in every lambda)Zach Klippenstein (he/him) [MOD]
08/23/2021, 2:57 PMthis
to contain?ursus
08/23/2021, 3:06 PMJulianK
08/23/2021, 3:12 PMZach Klippenstein (he/him) [MOD]
08/23/2021, 3:16 PMwith views i passed in the view instance, and looked up lets say idRight, but you had to assign some id to your view at some point. You don’t have to do that in compose, but you can create whatever identifiers you want for purposes like this and just pass them specifically to the logging code.
tad
08/23/2021, 4:57 PMursus
08/23/2021, 10:08 PMButton(
text = text,
onClick = LoggedClickable(text = text) { ... }
)
Just wondering if there is something fool prooftad
08/23/2021, 10:10 PMursus
08/23/2021, 10:17 PMtad
08/23/2021, 10:19 PMursus
08/23/2021, 11:26 PM