Created
September 17, 2024 01:07
-
-
Save Farhandroid/5014b82925493adecca375c246769dab 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 MainScreen(viewModel: NewsViewModel) { | |
// LaunchedEffect to fetch news when the MainScreen is first composed | |
LaunchedEffect(Unit) { | |
viewModel.fetchNews() // `fetchNews` is a suspend function implemented in ViewModel | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment