Skip to content

Instantly share code, notes, and snippets.

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