Skip to content

Instantly share code, notes, and snippets.

@skydoves
Created November 9, 2024 00:32
Show Gist options
  • Save skydoves/0c8e929bdea9383d506e6692b4b02fb9 to your computer and use it in GitHub Desktop.
Save skydoves/0c8e929bdea9383d506e6692b4b02fb9 to your computer and use it in GitHub Desktop.
launchedeffect
@Composable
fun MyScreen(userId: String) {
LaunchedEffect(userId) {
// Runs when `userId` changes, or when entering the composition
fetchDataForUser(userId)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment