Skip to main content
.accessibilityHidden(isHidden?: boolean)
isHidden
boolean
default:"true"
Whether to hide the component from assistive technologies. Defaults to true.

Support

Usage

Hide a decorative element

Image({ url: "decorative-divider.png" })
    .resizable()
    .accessibilityHidden()

Conditionally hide from accessibility

Image({ url: "icon.png" })
    .resizable()
    .accessibilityHidden(isDecorative)

See Also