Skip to main content
Logo Appt Light

Descriptive headers on Flutter

Screens should have descriptive headers, this helps users find specific content and orient themselves within your app. It is recommended to put distinguishing information at the beginning of your headers.

In Flutter, headers created with Text can be changed with the unnamed data property.

Semantics(
  header: true,
  child: Text('Descriptive header')
);

Feedback?

Let us know!