StreamPlayerApp icon indicating copy to clipboard operation
StreamPlayerApp copied to clipboard

Add New LifecycleEffect

Open rviannaoliveira opened this issue 2 years ago • 0 comments

After the Lifecycle update, a new way of handling lifecycle in Compose was introduced

https://developer.android.com/jetpack/androidx/releases/lifecycle#2.7.0-rc02

like:

@Composable
fun HomeScreen(viewModel: HomeViewModel = viewModel()) {
  LifecycleEventEffect(Lifecycle.Event.ON_RESUME) {
    viewModel.refreshData()
  }
  // …
}

rviannaoliveira avatar Jan 22 '24 20:01 rviannaoliveira