voyager
voyager copied to clipboard
LifecycleEffect depreciated
below here depreciated:
LifecycleEffect(
onStarted = {
viewModel.getList()
},
onDisposed = {
viewModel.removeList()
}
)
then how to replace it?
"This API is a wrap on top on DisposableEffect, will be removed in 1.1.0, replace with DisposableEffect"
for screen's lifecycle you can use LifecycleEffectOnce or just use the DisposableEffect.