ToolbarOverflowButton constructor

const ToolbarOverflowButton({
  1. Key? key,
  2. required WidgetBuilder overflowContentBuilder,
  3. bool isDense = false,
})

Builds a button to show at the far right side of the toolbar, when the toolbar actions are overflowing the available horizontal space.

When clicked, it opens a ToolbarOverflowMenu holding all overflowed actions in a simplified menu.

Implementation

const ToolbarOverflowButton({
  super.key,
  required this.overflowContentBuilder,
  this.isDense = false,
});