Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save alfonsogarsan/4e88aca560832fcdaeeefc7b244c4269 to your computer and use it in GitHub Desktop.
Save alfonsogarsan/4e88aca560832fcdaeeefc7b244c4269 to your computer and use it in GitHub Desktop.
.......
activity?.let {
//we pass the activity as lifecycle owner
answerViewModel.answer.observe(it, Observer { result ->
when (result) {
is Result.Success -> {
loadGifFromURL(result.value.image, requireContext(), answerGif)
}
is Result.Failure -> {
resolveAnswerLocally()
}
}
})
}
..........
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment