Last active
June 6, 2019 12:15
-
-
Save Jpunt/fe95cd696f55e5880acec2339b06e59e to your computer and use it in GitHub Desktop.
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
var body: some View { | |
List(tweets.identified(by: \.id)) { tweet in | |
HStack { | |
Text(tweet.message) | |
tweet.imageName.map { Image($0) } | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment