Skip to content

Instantly share code, notes, and snippets.

@laevandus
Last active December 12, 2023 11:17
Show Gist options
  • Save laevandus/6b9ed2389245d370545b42bf81ac6de7 to your computer and use it in GitHub Desktop.
Save laevandus/6b9ed2389245d370545b42bf81ac6de7 to your computer and use it in GitHub Desktop.
@MainActor func load() async {
phase = .loading
if let image = await prepareScaledImage() {
phase = .success(image)
}
else {
phase = .placeholder
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment