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