Last active
July 26, 2019 16:45
-
-
Save carson-katri/6ebb3a133f202a121ae9b26f537ebf50 to your computer and use it in GitHub Desktop.
List in SwiftUI
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
List(todos, id: \.id) { todo in | |
HStack { | |
Image(systemName: "checkmark.circle\(todo.completed ? ".fill" : "")") | |
Text(todo.title) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment