Accessibility

You will find here the description of the Accessibility function and its attributes details

What is it?

Accessibility is a function that applies accessibility to your component.

See how the structure is represented:

AttributeTypeRequiredDefinition
selfStyleComponentComponent the receive the accessibility properties.
accessibleBooleanIndicates whether the component will be interpreted as accessible. Default is true.
accessibilityLabelStringContains a message that will be spoken by programs like VoiceOver.
isHeaderBooleanIndicates whether the component is a header. Default is false.

How to use it?

Accessibility(
  self = Text("simple text"),
  accessibilityLabel = "text"
    )