FastColumn constructor

const FastColumn({
  1. Key? key,
  2. required List<Widget> children,
  3. double xGap = 10,
  4. double yGap = 10,
  5. bool extreme = false,
  6. MainAxisSize size = MainAxisSize.max,
  7. CrossAxisAlignment cross = CrossAxisAlignment.start,
  8. 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,
});