Skip to content

Instantly share code, notes, and snippets.

@AmaldevTA
Created November 15, 2020 03:28
Show Gist options
  • Save AmaldevTA/a8ec4815882ae981591ad2ea5dfd09fd to your computer and use it in GitHub Desktop.
Save AmaldevTA/a8ec4815882ae981591ad2ea5dfd09fd to your computer and use it in GitHub Desktop.
//implementation 'androidx.lifecycle:lifecycle-livedata-ktx:2.2.0'
val plants: LiveData<String> = liveData {
emit("Mango tree")
delay(500)
emit("JackFruit tree")
}
val fruits: Flow<String> = flow {
emit("Apple")
delay(500)
emit("JackFruit")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment