Screen title - Flutter

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

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