Created
June 25, 2020 15:16
-
-
Save JoseAlcerreca/c9abe755ed997cf9c0179446f9a15cf5 to your computer and use it in GitHub Desktop.
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
<!-- 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