Skip to content

Instantly share code, notes, and snippets.

@sergei-mikhailovskii-idf
Last active October 9, 2022 14:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sergei-mikhailovskii-idf/f62887a22d69da0f92798ecb7e4698e9 to your computer and use it in GitHub Desktop.
Save sergei-mikhailovskii-idf/f62887a22d69da0f92798ecb7e4698e9 to your computer and use it in GitHub Desktop.
@Composable
fun SplashScreen(navController: NavController) {
...
LaunchedEffect(key1 = null) {
launch {
viewModel.failureSharedFlow.collect {
// TODO - show snackbar with error message
}
}
}
Box {
...
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment