FlutstrapRow constructor

const FlutstrapRow({
  1. Key? key,
  2. required List<Widget> children,
  3. MainAxisAlignment mainAxisAlignment = MainAxisAlignment.start,
  4. CrossAxisAlignment crossAxisAlignment = CrossAxisAlignment.center,
  5. MainAxisSize mainAxisSize = MainAxisSize.max,
  6. TextDirection? textDirection,
  7. VerticalDirection verticalDirection = VerticalDirection.down,
  8. TextBaseline? textBaseline,
  9. double? gap,
  10. double? minHeight,
  11. double? maxHeight,
})

Implementation

const FlutstrapRow({
  super.key,
  required this.children,
  this.mainAxisAlignment = MainAxisAlignment.start,
  this.crossAxisAlignment = CrossAxisAlignment.center,
  this.mainAxisSize = MainAxisSize.max,
  this.textDirection,
  this.verticalDirection = VerticalDirection.down,
  this.textBaseline,
  this.gap,
  this.minHeight, // FIX: Optional minimum height
  this.maxHeight, // FIX: Optional maximum height
});