Hello, what is the equivalent function of swifui v...
# compose
s
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
There is no direct equivalent but maybe you are looking for
SideEffect
which triggers after composition is committed
a
For
onAppear
equivalent you should check `DisposableEffect`/`LaunchedEffect`.
1