icône Appbar

appBar: AppBar(
  title: Text('Hello'),
  actions: [
    IconButton(
      icon: Icon(Icons.settings),
      onPressed: () {},
    ),
    // add more IconButton
  ],
),
Sore Serval