Hello, what is the equivalent function of swifui view's on appear closure in compose, I want to perform certain action when composable appear on screen?
h
Halil Ozercan
03/06/2021, 9:32 AM
There is no direct equivalent but maybe you are looking for
SideEffect
which triggers after composition is committed
a
Albert Chang
03/06/2021, 10:54 AM
For
onAppear
equivalent you should check `DisposableEffect`/`LaunchedEffect`.