appBar: AppBar( title: Text('Hello'), actions: [ IconButton( icon: Icon(Icons.settings), onPressed: () {}, ), // add more IconButton ], ),
AppBar( title: Text("Hello Appbar"), leading: Icon( Icons.menu, ),);