BsRow constructor

const BsRow({
  1. Key? key,
  2. Color? color,
  3. BsVisibility visibility = BsVisibility.block,
  4. WrapCrossAlignment crossAxisAlignment = WrapCrossAlignment.start,
  5. EdgeInsetsGeometry? gutter,
  6. BoxConstraints? constraints,
  7. double? height,
  8. AlignmentGeometry? alignment,
  9. EdgeInsetsGeometry? padding,
  10. EdgeInsetsGeometry? margin,
  11. Decoration? decoration,
  12. Decoration? foregroundDecoration,
  13. Matrix4? transform,
  14. AlignmentGeometry? transformAlignment,
  15. Clip clipBehavior = Clip.none,
  16. List<BsCol> children = const [],
})

Implementation

const BsRow({
  Key? key,
  this.color,
  this.visibility = BsVisibility.block,
  this.crossAxisAlignment = WrapCrossAlignment.start,
  this.gutter,
  this.constraints,
  this.height,
  this.alignment,
  this.padding,
  this.margin,
  this.decoration,
  this.foregroundDecoration,
  this.transform,
  this.transformAlignment,
  this.clipBehavior = Clip.none,
  this.children = const [],
}) : super(key: key);