OverflowBar constructor

const OverflowBar(
  1. {Key? key,
  2. double spacing = 0.0,
  3. MainAxisAlignment? alignment,
  4. double overflowSpacing = 0.0,
  5. OverflowBarAlignment overflowAlignment = OverflowBarAlignment.start,
  6. VerticalDirection overflowDirection = VerticalDirection.down,
  7. TextDirection? textDirection,
  8. Clip clipBehavior = Clip.none,
  9. List<Widget> children = const <Widget>[]}
)

Constructs an OverflowBar.

Implementation

const OverflowBar({
  super.key,
  this.spacing = 0.0,
  this.alignment,
  this.overflowSpacing = 0.0,
  this.overflowAlignment = OverflowBarAlignment.start,
  this.overflowDirection = VerticalDirection.down,
  this.textDirection,
  this.clipBehavior = Clip.none,
  super.children,
});