Skip to content

Instantly share code, notes, and snippets.

@garsdle
Last active November 14, 2019 05:57
Show Gist options
  • Save garsdle/e3721beb5e10d345fe7a1d3fd39836fd to your computer and use it in GitHub Desktop.
Save garsdle/e3721beb5e10d345fe7a1d3fd39836fd to your computer and use it in GitHub Desktop.
struct AvatarView: View {
var image: UIImage?
var initials: String?
var body: some View {
OptionalView(image) { image in
Image(uiImage: image)
}
.fallbackView(initials) { initials in
Text(initials)
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment