BsRow constructor
const
BsRow({
- Key? key,
- required List<
BsCol> children, - double gutterX = BsSpacing.s3,
- double gutterY = BsSpacing.s3,
- BsRowJustify justify = BsRowJustify.start,
- BsRowAlignItems alignItems = BsRowAlignItems.stretch,
Creates a BsRow widget with the given children.
Implementation
const BsRow({
super.key,
required this.children,
this.gutterX = BsSpacing.s3,
this.gutterY = BsSpacing.s3,
this.justify = BsRowJustify.start,
this.alignItems = BsRowAlignItems.stretch,
});