ResponsiveLayoutGrid constructor

const ResponsiveLayoutGrid({
  1. Key? key,
  2. double minimumColumnWidth = defaultMinimumColumnWidth,
  3. double columnGutterWidth = defaultGutter,
  4. double rowGutterHeight = defaultGutter,
  5. int? maxNumberOfColumns,
  6. EdgeInsets padding = EdgeInsets.zero,
  7. List<Widget> children = const [],
  8. ResponsiveLayoutFactory layoutFactory = defaultLayoutFactory,
})

Implementation

const ResponsiveLayoutGrid({
  Key? key,
  this.minimumColumnWidth = defaultMinimumColumnWidth,
  this.columnGutterWidth = defaultGutter,
  this.rowGutterHeight = defaultGutter,
  this.maxNumberOfColumns,
  this.padding = EdgeInsets.zero,
  this.children = const [],
  this.layoutFactory = defaultLayoutFactory,
}) : super(key: key);