SFResponsiveRow constructor

const SFResponsiveRow({
  1. required List<Widget> children,
  2. double? spacing,
  3. bool wrap = true,
  4. EdgeInsetsGeometry? margin,
  5. EdgeInsetsGeometry? padding,
  6. int totalColumns = 12,
  7. Key? key,
})

Implementation

const SFResponsiveRow({
  required this.children,
  this.spacing,
  this.wrap = true,
  this.margin,
  this.padding,
  this.totalColumns = 12,
  super.key,
});