Created
April 23, 2023 08:53
This file contains 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
@Composable | |
fun loadNetworkImage( | |
url: String, | |
imageRepository: ImageRepository = ImageRepository() | |
): State<Result<Image>> { | |
// Creates a State<T> with Result.Loading as initial value | |
// If either `url` or `imageRepository` changes, the running producer | |
// will cancel and will be re-launched with the new inputs. | |
return produceState<Result<Image>>(initialValue = Result.Loading, url, imageRepository) { | |
// In a coroutine, can make suspend calls | |
val image = imageRepository.load(url) | |
// Update State with either an Error or Success result. | |
// This will trigger a recomposition where this State is read | |
value = if (image == null) { | |
Result.Error | |
} else { | |
Result.Success(image) | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment