Is there an equivalent event to `onViewAttachedToW...
# compose
d
Is there an equivalent event to
onViewAttachedToWindow
or something I could use to track when something is drawn on screen for impression tracking/user tracking analytics?
z
Probably an effect handler would be good for this, see
DisposableEffect
and
LaunchedEffect
d
Ty I'll look inot it