A description of what happens when the user activates the component. VoiceOver reads this after a short pause following the label.
Sets a VoiceOver hint that describes the result of interacting with a component.
.accessibilityHint(hint: string)
Button("Delete", () => removeItem())
.accessibilityHint("Removes the item from your list")
Image({ systemName: "heart.fill" })
.onTapGesture(() => toggleFavorite())
.accessibilityLabel("Favorite")
.accessibilityHint("Adds this item to your favorites")