ResponsiveGrid constructor

const ResponsiveGrid({
  1. Key? key,
  2. List<ResponsiveGridItem> children = const <ResponsiveGridItem>[],
  3. double? gridSpacing,
  4. bool showHorizontalDivider = false,
  5. bool showMargin = true,
  6. bool showTopSpacing = true,
  7. MainAxisAlignment mainAxisAlignment = MainAxisAlignment.start,
  8. CrossAxisAlignment crossAxisAlignment = CrossAxisAlignment.start,
  9. bool scrollable = true,
})

Implementation

const ResponsiveGrid({
  super.key,
  this.children = const <ResponsiveGridItem>[],
  this.gridSpacing,
  this.showHorizontalDivider = false,
  this.showMargin = true,
  this.showTopSpacing = true,
  this.mainAxisAlignment = MainAxisAlignment.start,
  this.crossAxisAlignment = CrossAxisAlignment.start,
  this.scrollable = true,
});