actions property

List<Widget> actions
final

Widgets to display after the title widget.

Typically these widgets are IconButtons representing common operations. For less common operations, consider using a PopupMenuButton as the last action.

This sample shows adding an action to an AppBar that opens a shopping cart.
Scaffold(
  appBar: AppBar(
    title: Text('Hello World'),
    actions: <Widget>[
      IconButton(
        icon: Icon(Icons.shopping_cart),
        tooltip: 'Open shopping cart',
        onPressed: () {
          // ...
        },
      ),
    ],
  ),
)

Implementation

final List<Widget> actions