Skip to content

Instantly share code, notes, and snippets.

@JoseAlcerreca
Created June 25, 2020 15:16
Show Gist options
  • Save JoseAlcerreca/c9abe755ed997cf9c0179446f9a15cf5 to your computer and use it in GitHub Desktop.
Save JoseAlcerreca/c9abe755ed997cf9c0179446f9a15cf5 to your computer and use it in GitHub Desktop.
<!-- Copyright 2020 Google LLC.
SPDX-License-Identifier: Apache-2.0 -->
// Don't use this
val currentWeatherFlow: LiveData<String> = liveData {
dataSource.fetchWeatherFlow().collect {
emit(it)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment