GFButtonBar constructor
const
GFButtonBar({
- Key? key,
- Axis direction = Axis.horizontal,
- WrapAlignment alignment = WrapAlignment.center,
- double spacing = 8.0,
- WrapAlignment runAlignment = WrapAlignment.start,
- double runSpacing = 0.0,
- WrapCrossAlignment crossAxisAlignment = WrapCrossAlignment.start,
- TextDirection? textDirection,
- VerticalDirection verticalDirection = VerticalDirection.down,
- required List<
Widget> children, - 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);