Skip to main content
Logo Appt Light

Screen title on Flutter

Each screen should have a descriptive title, which helps users with identifying the screen.

In Flutter, we recommend using an AppBar with an appropriate title on each screen.

Scaffold(
  appBar: AppBar(
    title: const Text('Appt homescreen'),
  ),
  body: ...
);

Feedback?

Let us know!