FlintRow constructor

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

Implementation

FlintRow({
  required this.children,
  this.columnWidths = const [],
  this.gap = 16.0,
  this.padding,
  this.margin,
  this.backgroundColor,
  this.border,
  this.borderRadius,
  this.alignment = 'center',
});