FastColumn constructor
const
FastColumn({
- Key? key,
- required List<
Widget> children, - double xGap = 10,
- double yGap = 10,
- bool extreme = false,
- MainAxisSize size = MainAxisSize.max,
- CrossAxisAlignment cross = CrossAxisAlignment.start,
- MainAxisAlignment main = MainAxisAlignment.start,
FastColumn is a widget that allows you to create a column with a predefined gap between the children.
children
is a list of widgets that will be displayed in the column.
xGap
is the horizontal gap between the children.
Implementation
const FastColumn({
super.key,
required this.children,
this.xGap = 10,
this.yGap = 10,
this.extreme = false,
this.size = MainAxisSize.max,
this.cross = CrossAxisAlignment.start,
this.main = MainAxisAlignment.start,
});