FlintFlexRow constructor

FlintFlexRow({
  1. required List<FlintWidget> children,
  2. List<int>? columnWidths,
  3. double gap = 16.0,
  4. EdgeInsets? padding,
  5. EdgeInsets? margin,
  6. String? backgroundColor,
  7. BoxBorder? border,
  8. BorderRadius? borderRadius,
  9. String alignment = 'center',
  10. bool mobileStack = true,
})

Implementation

FlintFlexRow({
  required this.children,
  this.columnWidths,
  this.gap = 16.0,
  this.padding,
  this.margin,
  this.backgroundColor,
  this.border,
  this.borderRadius,
  this.alignment = 'center',
  this.mobileStack = true,
});