Skip to main content
Logo Appt Light

Accessibility name on Flutter

All interactive elements must have an accessibility name. The accessibility name is used by assistive technologies to inform users about the ways to interact with your app.

For apps, the accessibility name is usually equal to the accessibility label. See accessibility label for more ways of setting an accessibility label.

Flutter uses the In Flutter, the semanticsLabel property is used as accessibility name.

Control(
  semanticsLabel: 'Appt'
);

Feedback?

Let us know!