as-app/docs/a11y-wcag22-aa.md
2026-01-12 18:27:57 +01:00

2 KiB

A11y baseline: WCAG 2.2 AA (practical checklist)

This document is a practical interpretation of WCAG 2.2 AA for this React Native app.

Scope: iOS VoiceOver and Android TalkBack.

P0 baseline (must-have)

Perceivable

  • Text alternatives: icon-only buttons have accessibilityLabel and (when helpful) accessibilityHint.

  • Contrast: text and icons meet AA contrast against their background.

    • Note: color-coded alert levels (red/yellow/green) must remain readable.

Operable

  • Keyboard/switch navigation: focus order is logical, no traps.

  • Touch target size: interactive controls are large enough (aim for ~44x44pt).

    • Header icons and chat controls should remain comfortably tappable.
  • No time limits without control: if an action auto-triggers (e.g. recording timeout), user feedback is provided.

Understandable

  • Labels and instructions: inputs and icon buttons expose meaningful labels in French.
  • Consistent navigation: header left/back/menu behavior stays consistent.

Robust

  • Role and state: use accessibilityRole where the default is ambiguous (e.g. custom touchables).
  • Avoid breaking semantics with nested touchables.

App-specific high-risk areas

What we track