Skip to main content
Logo Appt Light

Accessibility live region on Flutter

A live region allows users of assistive technologies to receive updates whenever important information on the screen changes.

On Flutter, the liveRegion property can be used in Semantics to indicate a live region. By default, the live region is polite: it queues announcements.

Semantics(
  liveRegion: true,
  child: Text('Appt live region')
);

Feedback?

Let us know!