-
-
Save skydoves/0c8e929bdea9383d506e6692b4b02fb9 to your computer and use it in GitHub Desktop.
launchedeffect
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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