Skip to content

Instantly share code, notes, and snippets.

@navsing
Last active May 7, 2020 06:16
Show Gist options
  • Save navsing/dd8a8cc4bd4a1482c853eacaca30b5ed to your computer and use it in GitHub Desktop.
Save navsing/dd8a8cc4bd4a1482c853eacaca30b5ed to your computer and use it in GitHub Desktop.
ForEach(self.tasks, id: \.id) { task in
VStack {
Text(task.title)
Button(action: {
if self.favorites.contains(task) {
self.favorites.remove(task)
} else {
self.favorites.add(task)
}
}) {
HStack {
Image(systemName: favorites.contains(task) ? "heart.fill" : "heart").foregroundColor(favorites.contains(task) ? .red : .white)
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment