FlutstrapRow constructor
const
FlutstrapRow({
- Key? key,
- required List<
Widget> children, - MainAxisAlignment mainAxisAlignment = MainAxisAlignment.start,
- CrossAxisAlignment crossAxisAlignment = CrossAxisAlignment.center,
- MainAxisSize mainAxisSize = MainAxisSize.max,
- TextDirection? textDirection,
- VerticalDirection verticalDirection = VerticalDirection.down,
- TextBaseline? textBaseline,
- double? gap,
- double? minHeight,
- 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
});