Icône de fuite de Flutter Appbar
appBar: AppBar(
title: Text('Hello'),
actions: [
IconButton(
icon: Icon(Icons.settings),
onPressed: () {},
),
// add more IconButton
],
),
Sore Serval