FlintSimpleColumn constructor

FlintSimpleColumn({
  1. required List<FlintWidget> children,
  2. double gap = 16.0,
  3. EdgeInsets? padding,
  4. EdgeInsets? margin,
  5. String? backgroundColor,
  6. BoxBorder? border,
  7. BorderRadius? borderRadius,
  8. String alignment = 'left',
})

Implementation

FlintSimpleColumn({
  required this.children,
  this.gap = 16.0,
  this.padding,
  this.margin,
  this.backgroundColor,
  this.border,
  this.borderRadius,
  this.alignment = 'left',
});