ColumnGap constructor
const
ColumnGap({
- Key? key,
- required List<
Widget?> children, - double paddingX = 0,
- double paddingY = 0,
- double gap = 16.0,
- MainAxisSize mainAxisSize = MainAxisSize.max,
- CrossAxisAlignment crossAxisAlignment = CrossAxisAlignment.center,
- bool showDivider = false,
Implementation
const ColumnGap({
super.key,
required this.children,
this.paddingX = 0,
this.paddingY = 0,
this.gap = 16.0,
this.mainAxisSize = MainAxisSize.max,
this.crossAxisAlignment = CrossAxisAlignment.center,
this.showDivider = false,
});