GFButtonBar constructor

const GFButtonBar({
  1. Key? key,
  2. Axis direction = Axis.horizontal,
  3. WrapAlignment alignment = WrapAlignment.center,
  4. double spacing = 8.0,
  5. WrapAlignment runAlignment = WrapAlignment.start,
  6. double runSpacing = 0.0,
  7. WrapCrossAlignment crossAxisAlignment = WrapCrossAlignment.start,
  8. TextDirection? textDirection,
  9. VerticalDirection verticalDirection = VerticalDirection.down,
  10. required List<Widget> children,
  11. EdgeInsetsGeometry padding = const EdgeInsets.all(0),
})

Create buttons bar for all types of buttons. check GFButton and GFIconButton

Implementation

const GFButtonBar({
  Key? key,
  this.direction = Axis.horizontal,
  this.alignment = WrapAlignment.center,
  this.spacing = 8.0,
  this.runAlignment = WrapAlignment.start,
  this.runSpacing = 0.0,
  this.crossAxisAlignment = WrapCrossAlignment.start,
  this.textDirection,
  this.verticalDirection = VerticalDirection.down,
  required this.children,
  this.padding = const EdgeInsets.all(0),
}) : super(key: key);