Skip to content

Instantly share code, notes, and snippets.

@Jpunt
Created June 6, 2019 06:58
Show Gist options
  • Save Jpunt/2f5b1fac54b93cd185c2dae110ce5d40 to your computer and use it in GitHub Desktop.
Save Jpunt/2f5b1fac54b93cd185c2dae110ce5d40 to your computer and use it in GitHub Desktop.
var body: some View {
List(tweets.identified(by: \.id)) { tweet in
HStack {
Text(tweet.message)
IfLet(tweet.imageName) { imageName in
Image(imageName)
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment