Skip to content

Instantly share code, notes, and snippets.

@JoseAlcerreca
Created May 11, 2021 11:25
Show Gist options
  • Save JoseAlcerreca/28a66238db4e133c0dc693b4b4b0c73d to your computer and use it in GitHub Desktop.
Save JoseAlcerreca/28a66238db4e133c0dc693b4b4b0c73d to your computer and use it in GitHub Desktop.
class MyViewModel(authManager..., repository...) : ViewModel() {
private val userId: Flow<String?> =
authManager.observeUser().map { user -> user?.id }
val result: LiveData<Result<Item>> = userId.flatMapLatest { newUserId ->
repository.observeItem(newUserId)
}.asLiveData()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment