BSRow constructor
const
BSRow({
- Key? key,
- required List<
Widget> children, - Key? bsRowInheritanceKey,
- Key? flexKey,
- MainAxisSize flexMainAxisSize = MainAxisSize.max,
- CrossAxisAlignment flexCrossAxisAlignment = CrossAxisAlignment.center,
- MainAxisAlignment flexMainAxisAlignment = MainAxisAlignment.start,
- TextBaseline? flexTextBaseline,
- TextDirection? flexTextDirection,
- VerticalDirection flexVerticalDirection = VerticalDirection.down,
- Clip flexClipBehavior = Clip.none,
A row or a column based on it's BSColumn children's breakpoints if the sum of the children column's breakpoints are greater than 12 this is a column, otherwise it is a row
Implementation
const BSRow({
super.key,
required this.children,
/*
BSRowInheritance
*/
this.bsRowInheritanceKey,
/*
Flex
*/
this.flexKey,
this.flexMainAxisSize = MainAxisSize.max,
this.flexCrossAxisAlignment = CrossAxisAlignment.center,
this.flexMainAxisAlignment = MainAxisAlignment.start,
this.flexTextBaseline,
this.flexTextDirection,
this.flexVerticalDirection = VerticalDirection.down,
this.flexClipBehavior = Clip.none,
});