TFlowPanel constructor

const TFlowPanel({
  1. Key? key,
  2. required List<Widget> controlList,
  3. TFlowStyle flowStyle = TFlowStyle.fsLeftRightTopBottom,
  4. bool autoWrap = true,
  5. double spacing = 4,
  6. double runSpacing = 4,
  7. Color? color,
  8. double? width,
  9. double? height,
})

Implementation

const TFlowPanel({
  super.key,
  required this.controlList,
  this.flowStyle = TFlowStyle.fsLeftRightTopBottom,
  this.autoWrap = true,
  this.spacing = 4,
  this.runSpacing = 4,
  this.color,
  this.width,
  this.height,
});