These modifiers shape how a component is announced and navigated by VoiceOver, TalkBack, and other assistive technologies.Documentation Index
Fetch the complete documentation index at: https://docs.metabind.ai/llms.txt
Use this file to discover all available pages before exploring further.
accessibilityLabel provides the spoken name; accessibilityValue adds dynamic state like a percentage; accessibilityHidden removes purely decorative elements from the accessibility tree; accessibilityRemoveTraits strips default traits like “button” or “image”.
For additional context use accessibilityHint, and to add traits use accessibilityAddTraits.
accessibilityLabel
Sets the VoiceOver label for a component.The text that VoiceOver reads when the user focuses on the component.
accessibilityValue
Sets the current accessibility value for a component, such as a percentage or status.The current value of the component, read by VoiceOver after the label. For example, “50 percent” for a progress indicator.
accessibilityHidden
Hides a component from assistive technologies like VoiceOver.Whether to hide the component from assistive technologies. Defaults to
true.accessibilityRemoveTraits
Removes default accessibility traits from a component.One or more accessibility traits to remove from the component. See AccessibilityTraits.
See also
- accessibilityHint — additional context spoken after the label
- accessibilityAddTraits — add traits like
isButtonorisHeader - accessibilityRepresentation — replace the accessibility element entirely
- AccessibilityTraits — trait values