FlutstrapGrid constructor

const FlutstrapGrid({
  1. Key? key,
  2. required List<Widget> children,
  3. bool fluid = false,
  4. EdgeInsetsGeometry? padding,
  5. EdgeInsetsGeometry? margin,
  6. Color? color,
  7. Decoration? decoration,
  8. AlignmentGeometry? alignment,
  9. double? rowGap,
})

Implementation

const FlutstrapGrid({
  super.key,
  required this.children,
  this.fluid = false,
  this.padding,
  this.margin,
  this.color,
  this.decoration,
  this.alignment,
  this.rowGap,
});