Skip to content

Instantly share code, notes, and snippets.

@mattrob33
Last active March 9, 2022 15:18
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 mattrob33/db5081ea433a550a8fcf9b99e89de849 to your computer and use it in GitHub Desktop.
Save mattrob33/db5081ea433a550a8fcf9b99e89de849 to your computer and use it in GitHub Desktop.
val movie: StateFlow<Movie> = …
val title: StateFlow<String> = movie.mapLatest {
it.title
}.stateIn(
scope = viewModelScope,
started = SharingStarted.WhileSubscribed(),
initialValue = ""
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment