Skip to main content
Logo Appt Light

Accessibility focusability on Flutter

An element should indicate whether it should be focusable by assistive technologies or not. You can help users of assistive technologies by choosing which elements they can interact with. By keep unnecessary elements out of the accessibility tree, the user experience is improved.

On Flutter, the focusable property of SemanticsProperties can be used to indicate whether assistive technologies can focus on an element.

Semantics(
  focusable: false,
  child: Widget();
);

Feedback?

Let us know!